[Python-checkins] cpython: Fix typo in a comment of abstract.c

victor.stinner python-checkins at python.org
Tue Dec 6 12:49:24 EST 2016


https://hg.python.org/cpython/rev/330b608edd3c
changeset:   105487:330b608edd3c
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Dec 06 18:49:15 2016 +0100
summary:
  Fix typo in a comment of abstract.c

files:
  Objects/abstract.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/abstract.c b/Objects/abstract.c
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -2463,7 +2463,7 @@
     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)) {

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list