- 24 Mar, 2015 30 commits
-
-
Serhiy Storchaka authored
and ASCII letter now raise a deprecation warning and will be forbidden in Python 3.6.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
keyword argument. string.Formatter now allows to specify the "self" and the "format_string" parameters as keyword arguments.
-
Serhiy Storchaka authored
keyword argument. string.Formatter now allows to specify the "self" and the "format_string" parameters as keyword arguments.
-
Serhiy Storchaka authored
str.index, str.count, the in operator, str.split, str.partition) with arguments of different kinds (UCS1, UCS2, UCS4).
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
In particular the __dict__ attributes of building types.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
extesible. No public API is added.
-
Serhiy Storchaka authored
Got rid of quadratic complexity in breaking long words.
-
-
Serhiy Storchaka authored
supports copying of instances of classes whose __new__ method takes keyword-only arguments.
-
Victor Stinner authored
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 authored
-
Victor Stinner authored
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 authored
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 authored
-
Victor Stinner authored
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 authored
current exception because they can run arbitrary Python code and so no exception must be set.
-
Victor Stinner authored
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 authored
* 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 authored
-
Ezio Melotti authored
-
Victor Stinner authored
* 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
-
Victor Stinner authored
fstat(), these functions are always required. Remove HAVE_STAT and HAVE_FSTAT defines, and stop supporting DONT_HAVE_STAT and DONT_HAVE_FSTAT.
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
- 23 Mar, 2015 6 commits
-
-
Paul Moore authored
-
Victor Stinner authored
-
Victor Stinner authored
Issue #23654: Turn off ICC's tail call optimization for the stack_overflow generator. ICC turns the recursive tail call into a loop. Patch written by Matt Frank.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
GzipFile corruption. Original patch by Wolfgang Maier.
-
Serhiy Storchaka authored
unnecessary copying of memoryview in gzip.GzipFile.write(). Original patch by Wolfgang Maier.
-
- 22 Mar, 2015 4 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
Issue 23729: Document ElementTree namespace handling and fix an omission in the XPATH predicate table.
-