- 25 Mar, 2015 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
creation) mode.
-
Steve Dower yazdı
-
- 21 Mar, 2015 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 25 Mar, 2015 10 kayıt (commit)
-
-
Steve Dower yazdı
Also renames a local to avoid warnings about shadowing
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Victor Stinner yazdı
Windows has no memrchr() function. This change is only a workaround, the optimization must be reenabled on other platforms.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
close the binary file to fix a resource warning.
-
Victor Stinner yazdı
Flushing sys.stdout and sys.stderr in Py_FatalError() can call again Py_FatalError(). Add a reentrant flag to detect this case and just abort at the second call.
-
Victor Stinner yazdı
Flushing sys.stdout and sys.stderr in Py_FatalError() can call again Py_FatalError(). Add a reentrant flag to detect this case and just abort at the second call.
-
- 24 Mar, 2015 27 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
writer failed in BufferedRWPair.close().
-
Serhiy Storchaka yazdı
writer failed in BufferedRWPair.close().
-
Serhiy Storchaka yazdı
and ASCII letter now raise a deprecation warning and will be forbidden in Python 3.6.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
keyword argument. string.Formatter now allows to specify the "self" and the "format_string" parameters as keyword arguments.
-
Serhiy Storchaka yazdı
keyword argument. string.Formatter now allows to specify the "self" and the "format_string" parameters as keyword arguments.
-
Serhiy Storchaka yazdı
str.index, str.count, the in operator, str.split, str.partition) with arguments of different kinds (UCS1, UCS2, UCS4).
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
In particular the __dict__ attributes of building types.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
extesible. No public API is added.
-
Serhiy Storchaka yazdı
Got rid of quadratic complexity in breaking long words.
-
Serhiy Storchaka yazdı
supports copying of instances of classes whose __new__ method takes keyword-only arguments.
-
Victor Stinner yazdı
Too bad, sometimes Py_FatalError() is unable to write the exception into sys.stderr (on "AMD64 OpenIndiana 3.x" buildbot, the buildbot was probably out of memory). Call Py_FatalError() with a different message for the two cases (result+error, or no result and no error).
-
Victor Stinner yazdı
-
Victor Stinner yazdı
sys.stderr It should help to see exceptions when stderr if buffered: PyErr_Display() calls sys.stderr.write(), it doesn't write into stderr file descriptor directly.
-
Victor Stinner yazdı
It should help to see exceptions when stderr if buffered: PyErr_Display() calls sys.stderr.write(), it doesn't write into stderr file descriptor directly.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Py_FatalError() instead of using an assertion in debug mode. Py_FatalError() displays the current exception and the traceback which contain more information than just the assertion error.
-
Victor Stinner yazdı
current exception because they can run arbitrary Python code and so no exception must be set.
-