mirror of https://github.com/python/cpython
Add missing PyDoc_STR to GenericAlias.__parameters__ (#108811)
This commit is contained in:
parent
baaac99487
commit
a806e920c4
|
@ -814,7 +814,7 @@ ga_unpacked_tuple_args(PyObject *self, void *unused)
|
|||
}
|
||||
|
||||
static PyGetSetDef ga_properties[] = {
|
||||
{"__parameters__", ga_parameters, (setter)NULL, "Type variables in the GenericAlias.", NULL},
|
||||
{"__parameters__", ga_parameters, (setter)NULL, PyDoc_STR("Type variables in the GenericAlias."), NULL},
|
||||
{"__typing_unpacked_tuple_args__", ga_unpacked_tuple_args, (setter)NULL, NULL},
|
||||
{0}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue