- 24 Mar, 2015 20 kayıt (commit)
-
-
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
-
Victor Stinner yazdı
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 yazdı
-
Raymond Hettinger yazdı
-
- 23 Mar, 2015 6 kayıt (commit)
-
-
Paul Moore yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
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 yazdı
-
Serhiy Storchaka yazdı
GzipFile corruption. Original patch by Wolfgang Maier.
-
Serhiy Storchaka yazdı
unnecessary copying of memoryview in gzip.GzipFile.write(). Original patch by Wolfgang Maier.
-
- 22 Mar, 2015 14 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
Issue 23729: Document ElementTree namespace handling and fix an omission in the XPATH predicate table.
-
R David Murray yazdı
-
R David Murray yazdı
-
R David Murray yazdı
-
R David Murray yazdı
Some http servers will reject PUT, POST, and PATCH requests if they do not have a Content-Length header. Patch by James Rutherford, with additional cleaning up of the 'request' documentation by me.
-
R David Murray yazdı
-
R David Murray yazdı
-
Paul Moore yazdı
As a result, explicitly support pathlib.Path objects as arguments. Also added tests for the CLI interface.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
Patch by Mike Short.
-
Ned Deily yazdı
-