From: Georg Brandl Date: Fri, 26 Aug 2005 12:50:37 +0000 (+0000) Subject: Important typo X-Git-Tag: v2.4.2c1~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0499974cda6cc06487baa838033570340e7a397;p=thirdparty%2FPython%2Fcpython.git Important typo --- diff --git a/Modules/operator.c b/Modules/operator.c index 00135d9b2bec..df19f6be6315 100644 --- a/Modules/operator.c +++ b/Modules/operator.c @@ -267,7 +267,7 @@ itemgetter_new(PyTypeObject *type, PyObject *args, PyObject *kwds) itemgetterobject *ig; PyObject *item; - if (!_PyArg_NoKeywords("itemgetter()", kdws)) + if (!_PyArg_NoKeywords("itemgetter()", kwds)) return NULL; if (!PyArg_UnpackTuple(args, "itemgetter", 1, 1, &item))