- 25 Mar, 2015 8 kayıt (commit)
-
-
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 32 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.
-
Victor Stinner yazdı
I expected more users of _Py_wstat(), but in practice it's only used by Modules/getpath.c. Move the function because it's not needed on Windows. Windows uses PC/getpathp.c which uses the Win32 API (ex: GetFileAttributesW()) not the POSIX API.
-
Victor Stinner yazdı
* Display the current Python stack if an exception was raised but the exception has no traceback * Disable faulthandler if an exception was raised (before it was only disabled if no exception was raised) * To display the current Python stack, call PyGILState_GetThisThreadState() which works even if the GIL was released
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Victor Stinner yazdı
* Display the current Python stack if an exception was raised but the exception has no traceback * Disable faulthandler if an exception was raised (before it was only disabled if no exception was raised) * To display the current Python stack, call PyGILState_GetThisThreadState() which works even if the GIL was released
-