diff options
author | James Hilton-Balfe <gobot1234yt@gmail.com> | 2024-05-07 01:41:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-07 01:41:32 (GMT) |
commit | e7dafdc2240a8e4e45f53782c47120eb3fe37712 (patch) | |
tree | 6ff7070c1f48907643b1354b2726d4c268befa15 /Objects | |
parent | b4bdf83cc67434235d9630c92c84a5261992b235 (diff) | |
download | cpython-e7dafdc2240a8e4e45f53782c47120eb3fe37712.zip cpython-e7dafdc2240a8e4e45f53782c47120eb3fe37712.tar.gz cpython-e7dafdc2240a8e4e45f53782c47120eb3fe37712.tar.bz2 |
gh-110209: Add __class_getitem__ for generator and coroutine (#110212)
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/genobject.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Objects/genobject.c b/Objects/genobject.c index acdcf57..92cd8c6 100644 --- a/Objects/genobject.c +++ b/Objects/genobject.c @@ -799,6 +799,7 @@ static PyMethodDef gen_methods[] = { {"throw",_PyCFunction_CAST(gen_throw), METH_FASTCALL, throw_doc}, {"close",(PyCFunction)gen_close, METH_NOARGS, close_doc}, {"__sizeof__", (PyCFunction)gen_sizeof, METH_NOARGS, sizeof__doc__}, + {"__class_getitem__", Py_GenericAlias, METH_O|METH_CLASS, PyDoc_STR("See PEP 585")}, {NULL, NULL} /* Sentinel */ }; @@ -1151,6 +1152,7 @@ static PyMethodDef coro_methods[] = { {"throw",_PyCFunction_CAST(gen_throw), METH_FASTCALL, coro_throw_doc}, {"close",(PyCFunction)gen_close, METH_NOARGS, coro_close_doc}, {"__sizeof__", (PyCFunction)gen_sizeof, METH_NOARGS, sizeof__doc__}, + {"__class_getitem__", Py_GenericAlias, METH_O|METH_CLASS, PyDoc_STR("See PEP 585")}, {NULL, NULL} /* Sentinel */ }; |