diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-09-25 03:27:12 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-09-25 03:27:12 +0000 |
commit | da4fabac8744bbd9aa787b37b506695a70e768b3 (patch) | |
tree | eee32a882ac0ad891ffd7ef4d5d4b15aee8def38 /Python | |
parent | 2af840455e8ac7b88964e7b15f3e7a4e848e1a90 (diff) | |
download | cpython-git-da4fabac8744bbd9aa787b37b506695a70e768b3.tar.gz |
Rolled back revisions 85003 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 921cb48699..673eac2ed4 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -3059,7 +3059,7 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals, defcount ? "at most" : "exactly", co->co_argcount, co->co_argcount == 1 ? "" : "s", - argcount); + argcount + kwcount); goto fail; } n = co->co_argcount; |