From: Raymond Hettinger Date: Sat, 9 Apr 2011 19:57:00 +0000 (-0700) Subject: Fix nit (make spelling consistent in prototype) X-Git-Tag: v3.3.0a1~2636 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a56328680d00619b486909c604fee387a81ffc77;p=python Fix nit (make spelling consistent in prototype) --- diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c index 061204e502..0882d368d1 100644 --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c @@ -372,7 +372,7 @@ static PyMemberDef keyobject_members[] = { }; static PyObject * -keyobject_call(keyobject *ko, PyObject *args, PyObject *kw); +keyobject_call(keyobject *ko, PyObject *args, PyObject *kwds); static PyObject * keyobject_richcompare(PyObject *ko, PyObject *other, int op);