From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 13 May 2021 21:07:16 +0000 (-0700) Subject: bpo-44114: Remove redundant cast. (GH-26098) X-Git-Tag: v3.9.6~105 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=04c46101944777dd131bbfe8dbfef5f4d328860d;p=thirdparty%2FPython%2Fcpython.git bpo-44114: Remove redundant cast. (GH-26098) (cherry picked from commit e0c614e5fd017ca43cab55a9f8490133750c704f) Co-authored-by: Inada Naoki --- diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 8a056530a454..06412a9d87aa 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -4623,7 +4623,7 @@ PyDoc_STRVAR(reversed_items_doc, static PyMethodDef dictitems_methods[] = { {"isdisjoint", (PyCFunction)dictviews_isdisjoint, METH_O, isdisjoint_doc}, - {"__reversed__", (PyCFunction)(void(*)(void))dictitems_reversed, METH_NOARGS, + {"__reversed__", (PyCFunction)dictitems_reversed, METH_NOARGS, reversed_items_doc}, {NULL, NULL} /* sentinel */ }; @@ -4704,7 +4704,7 @@ PyDoc_STRVAR(reversed_values_doc, "Return a reverse iterator over the dict values."); static PyMethodDef dictvalues_methods[] = { - {"__reversed__", (PyCFunction)(void(*)(void))dictvalues_reversed, METH_NOARGS, + {"__reversed__", (PyCFunction)dictvalues_reversed, METH_NOARGS, reversed_values_doc}, {NULL, NULL} /* sentinel */ };