summaryrefslogtreecommitdiffstats
path: root/Modules/_functoolsmodule.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-04-09 19:57:00 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-04-09 19:57:00 (GMT)
commita56328680d00619b486909c604fee387a81ffc77 (patch)
treefa305dca8420f80b3906662690c9da1da9cfa2bf /Modules/_functoolsmodule.c
parent6e678b439598b67266e6d5fcb56858a61335bff2 (diff)
downloadcpython-a56328680d00619b486909c604fee387a81ffc77.zip
cpython-a56328680d00619b486909c604fee387a81ffc77.tar.gz
cpython-a56328680d00619b486909c604fee387a81ffc77.tar.bz2
Fix nit (make spelling consistent in prototype)
Diffstat (limited to 'Modules/_functoolsmodule.c')
-rw-r--r--Modules/_functoolsmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c
index 061204e..0882d36 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);