Fix typo in a comment of abstract.c

This commit is contained in:
Victor Stinner 2016-12-06 18:49:15 +01:00
parent f17c3de263
commit 2f35ca3e84
1 changed files with 1 additions and 1 deletions

View File

@ -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)) {