projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f17c3de
)
Fix typo in a comment of abstract.c
author
Victor Stinner
<victor.stinner@gmail.com>
Tue, 6 Dec 2016 17:49:15 +0000
(18:49 +0100)
committer
Victor Stinner
<victor.stinner@gmail.com>
Tue, 6 Dec 2016 17:49:15 +0000
(18:49 +0100)
Objects/abstract.c
patch
|
blob
|
history
diff --git
a/Objects/abstract.c
b/Objects/abstract.c
index 24948dbfea5f1247783ffc03b45a5a3ab41e5173..034209ccd41c75cf27fd6dbf2449176884013d60 100644
(file)
--- 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)) {