mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +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
|
|
@ -331,7 +331,8 @@ union_parameters(PyObject *self, void *Py_UNUSED(unused))
|
|||
}
|
||||
|
||||
static PyGetSetDef union_properties[] = {
|
||||
{"__parameters__", union_parameters, (setter)NULL, "Type variables in the types.UnionType.", NULL},
|
||||
{"__parameters__", union_parameters, (setter)NULL,
|
||||
PyDoc_STR("Type variables in the types.UnionType."), NULL},
|
||||
{0}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue