mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Add missing PyDoc_STR
calls (#109393)
In files: * Modules/_ctypes/cfield.c * Modules/_struct.c * Objects/dictobject.c * Objects/typevarobject.c * Objects/unionobject.c
This commit is contained in:
parent
5eec58a9e5
commit
47af188593
5 changed files with 9 additions and 8 deletions
|
@ -806,8 +806,8 @@ paramspec_kwargs(PyObject *self, void *unused)
|
|||
}
|
||||
|
||||
static PyGetSetDef paramspec_getset[] = {
|
||||
{"args", (getter)paramspec_args, NULL, "Represents positional arguments.", NULL},
|
||||
{"kwargs", (getter)paramspec_kwargs, NULL, "Represents keyword arguments.", NULL},
|
||||
{"args", (getter)paramspec_args, NULL, PyDoc_STR("Represents positional arguments."), NULL},
|
||||
{"kwargs", (getter)paramspec_kwargs, NULL, PyDoc_STR("Represents keyword arguments."), NULL},
|
||||
{0},
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue