]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Important typo
authorGeorg Brandl <georg@python.org>
Fri, 26 Aug 2005 12:50:37 +0000 (12:50 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 26 Aug 2005 12:50:37 +0000 (12:50 +0000)
Modules/operator.c

index 00135d9b2bec8f49b56c99ff4dc364418ff15e8c..df19f6be631560940b4b702fa29087e3b2e9985b 100644 (file)
@@ -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))