Rolled back revisions 85003 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k
This commit is contained in:
Benjamin Peterson 2010-09-25 03:27:12 +00:00
parent 2af840455e
commit da4fabac87
2 changed files with 1 additions and 4 deletions

View File

@ -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.

View File

@ -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;