diff options
author | James Hilton-Balfe <gobot1234yt@gmail.com> | 2023-09-14 03:42:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-14 03:42:44 (GMT) |
commit | a806e920c41d64a442708871fba260831fedc472 (patch) | |
tree | 50e2bc761d7d04c44112b90a142c60e33765b329 /Objects | |
parent | baaac99487255da049a3712d46b769635640fc92 (diff) | |
download | cpython-a806e920c41d64a442708871fba260831fedc472.zip cpython-a806e920c41d64a442708871fba260831fedc472.tar.gz cpython-a806e920c41d64a442708871fba260831fedc472.tar.bz2 |
Add missing PyDoc_STR to GenericAlias.__parameters__ (#108811)
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/genericaliasobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/genericaliasobject.c b/Objects/genericaliasobject.c index bb50537..ca17244 100644 --- a/Objects/genericaliasobject.c +++ b/Objects/genericaliasobject.c @@ -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} }; |