From: Victor Stinner Date: Tue, 6 Dec 2016 17:49:15 +0000 (+0100) Subject: Fix typo in a comment of abstract.c X-Git-Tag: v3.7.0a1~1828 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2f35ca3e847aaa846f14ed87b5843aca947f5805;p=thirdparty%2FPython%2Fcpython.git Fix typo in a comment of abstract.c --- diff --git a/Objects/abstract.c b/Objects/abstract.c index 24948dbfea5f..034209ccd41c 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -2463,7 +2463,7 @@ _PyObject_FastCallKeywords(PyObject *callable, PyObject **stack, Py_ssize_t narg assert(kwnames == NULL || PyTuple_CheckExact(kwnames)); assert((nargs == 0 && nkwargs == 0) || stack != NULL); /* kwnames must only contains str strings, no subclass, and all keys must - be unique: these are implemented in Python/ceval.c and + be unique: these checks are implemented in Python/ceval.c and _PyArg_ParseStack(). */ if (PyFunction_Check(callable)) {