[Python-checkins] cpython: Fix nit (make spelling consistent in prototype)

raymond.hettinger python-checkins at python.org
Sat Apr 9 22:00:25 CEST 2011


http://hg.python.org/cpython/rev/a593a1030f2c
changeset:   69222:a593a1030f2c
user:        Raymond Hettinger <python at rcn.com>
date:        Sat Apr 09 12:57:00 2011 -0700
summary:
  Fix nit (make spelling consistent in prototype)

files:
  Modules/_functoolsmodule.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c
--- a/Modules/_functoolsmodule.c
+++ b/Modules/_functoolsmodule.c
@@ -372,7 +372,7 @@
 };
 
 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);

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list