summaryrefslogtreecommitdiffstats
path: root/Modules/_queuemodule.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 /Modules/_queuemodule.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 'Modules/_queuemodule.c')
-rw-r--r--Modules/_queuemodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_queuemodule.c b/Modules/_queuemodule.c
index a124255..58772d7 100644
--- a/Modules/_queuemodule.c
+++ b/Modules/_queuemodule.c
@@ -356,7 +356,7 @@ static PyMethodDef simplequeue_methods[] = {
_QUEUE_SIMPLEQUEUE_PUT_METHODDEF
_QUEUE_SIMPLEQUEUE_PUT_NOWAIT_METHODDEF
_QUEUE_SIMPLEQUEUE_QSIZE_METHODDEF
- {"__class_getitem__", (PyCFunction)Py_GenericAlias,
+ {"__class_getitem__", Py_GenericAlias,
METH_O|METH_CLASS, PyDoc_STR("See PEP 585")},
{NULL, NULL} /* sentinel */
};