Kaydet (Commit) da4fabac authored tarafından Benjamin Peterson's avatar Benjamin Peterson

Rolled back revisions 85003 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k
üst 2af84045
...@@ -15,9 +15,6 @@ Core and Builtins ...@@ -15,9 +15,6 @@ Core and Builtins
- Issue #9797: pystate.c wrongly assumed that zero couldn't be a valid - Issue #9797: pystate.c wrongly assumed that zero couldn't be a valid
thread-local storage key. 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 - 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 encoding and errors attributes instead of using utf-8 in strict mode, to get
the same behaviour than the print statement. the same behaviour than the print statement.
......
...@@ -3059,7 +3059,7 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals, ...@@ -3059,7 +3059,7 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
defcount ? "at most" : "exactly", defcount ? "at most" : "exactly",
co->co_argcount, co->co_argcount,
co->co_argcount == 1 ? "" : "s", co->co_argcount == 1 ? "" : "s",
argcount); argcount + kwcount);
goto fail; goto fail;
} }
n = co->co_argcount; n = co->co_argcount;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment