summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Misc/NEWS3
-rw-r--r--Python/ceval.c2
2 files changed, 1 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e42bb16d57..77adf82beb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,9 +15,6 @@ Core and Builtins
- Issue #9797: pystate.c wrongly assumed that zero couldn't be a valid
thread-local storage key.
-- Issue #9943: Improve the TypeError raised for passing too many positional
- arguments.
-
- Issue #4947: The write() method of sys.stdout and sys.stderr uses their
encoding and errors attributes instead of using utf-8 in strict mode, to get
the same behaviour than the print statement.
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;