summaryrefslogtreecommitdiffstats
path: root/Python/context.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-09-19 15:05:30 (GMT)
committerGitHub <noreply@github.com>2021-09-19 15:05:30 (GMT)
commitf25f2e2e8c8e48490d22b0cdf67f575608701f6f (patch)
tree5357fbf7251027bd5eed255a4f22639b0119d7a7 /Python/context.c
parenta6241773869b80f2b1cac63f26ba646aa808a8db (diff)
downloadcpython-f25f2e2e8c8e48490d22b0cdf67f575608701f6f.zip
cpython-f25f2e2e8c8e48490d22b0cdf67f575608701f6f.tar.gz
cpython-f25f2e2e8c8e48490d22b0cdf67f575608701f6f.tar.bz2
Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)
The cast to PyCFunction is redundant. Overuse of redundant casts can hide actual bugs.
Diffstat (limited to 'Python/context.c')
-rw-r--r--Python/context.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/context.c b/Python/context.c
index bf2ba93..9560fb3 100644
--- a/Python/context.c
+++ b/Python/context.c
@@ -1049,7 +1049,7 @@ static PyMethodDef PyContextVar_methods[] = {
_CONTEXTVARS_CONTEXTVAR_GET_METHODDEF
_CONTEXTVARS_CONTEXTVAR_SET_METHODDEF
_CONTEXTVARS_CONTEXTVAR_RESET_METHODDEF
- {"__class_getitem__", (PyCFunction)Py_GenericAlias,
+ {"__class_getitem__", Py_GenericAlias,
METH_O|METH_CLASS, PyDoc_STR("See PEP 585")},
{NULL, NULL}
};
@@ -1190,7 +1190,7 @@ static PyGetSetDef PyContextTokenType_getsetlist[] = {
};
static PyMethodDef PyContextTokenType_methods[] = {
- {"__class_getitem__", (PyCFunction)Py_GenericAlias,
+ {"__class_getitem__", Py_GenericAlias,
METH_O|METH_CLASS, PyDoc_STR("See PEP 585")},
{NULL}
};