summaryrefslogtreecommitdiffstats
path: root/Objects/abstract.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-12-06 17:49:15 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-12-06 17:49:15 (GMT)
commit2f35ca3e847aaa846f14ed87b5843aca947f5805 (patch)
tree9e538ac42db3b8c78703e17ebc741c233d83a212 /Objects/abstract.c
parentf17c3de2635df4f5a51c2cb6b99f3e125af19864 (diff)
downloadcpython-2f35ca3e847aaa846f14ed87b5843aca947f5805.zip
cpython-2f35ca3e847aaa846f14ed87b5843aca947f5805.tar.gz
cpython-2f35ca3e847aaa846f14ed87b5843aca947f5805.tar.bz2
Fix typo in a comment of abstract.c
Diffstat (limited to 'Objects/abstract.c')
-rw-r--r--Objects/abstract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index 24948db..034209c 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)) {