- 31 May, 2012 8 kayıt (commit)
-
-
Nick Coghlan yazdı
Issue #14963: Added test cases for contextlib.ExitStack exception handling behaviour (Initial patch by Alon Horev)
-
Stefan Krah yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Kristjan Valur Jonsson yazdı
PyObject_GC_Resize() with incorrect error handling. In case of errors, the original object would be leaked. This checkin fixes those cases.
-
R David Murray yazdı
Or perhaps more hackish, depending on your perspective. But at least this way it is now possible to run the individual tests using the unittest CLI.
-
- 30 May, 2012 9 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Eli Bendersky yazdı
_elementtree, with a test.
-
Nick Coghlan yazdı
Close #14947: add missing cross-reference to Language Definition from the new dynamic type creation functions. Also cleaned up the general wording of the docs
-
R David Murray yazdı
-
Victor Stinner yazdı
subprocess and trace modules.
-
Ned Deily yazdı
byte literals supported in Python 3.3.
-
- 29 May, 2012 23 kayıt (commit)
-
-
Brian Curtin yazdı
-
Brian Curtin yazdı
-
Brian Curtin yazdı
-
Brian Curtin yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
R David Murray yazdı
Patch by Oleg Plakhotnyuk.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
R David Murray yazdı
-
R David Murray yazdı
This feature was supposed to be part of the initial email6 checkin, but it got lost in my big refactoring. In this patch I'm not providing an easy way to turn off the errors, but they only happen when a header is added programmatically, and it is almost never the right thing to do to allow the duplicate to be added. An application that needs to add duplicates of unique headers can create a policy subclass to allow it.
-
Eli Bendersky yazdı
-
Eli Bendersky yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Victor Stinner yazdı
* Formatting string, int, float and complex use the _PyUnicodeWriter API. It avoids a temporary buffer in most cases. * Add _PyUnicodeWriter_WriteStr() to restore the PyAccu optimization: just keep a reference to the string if the output is only composed of one string * Disable overallocation when formatting the last argument of str%args and str.format(args) * Overallocation allocates at least 100 characters: add min_length attribute to the _PyUnicodeWriter structure * Add new private functions: _PyUnicode_FastCopyCharacters(), _PyUnicode_FastFill() and _PyUnicode_FromASCII() The speed up is around 20% in average.
-
Victor Stinner yazdı
-
Richard Oudkerk yazdı
Previously a Python 2.x compatible hack was used for multiprocessing.sharedctypes.Array(). Also the documented signature was wrong.
-
Richard Oudkerk yazdı
Proxy classes in multiprocessing do not need these methods in Python 3.x.
-
Vinay Sajip yazdı
-
Hynek Schlawack yazdı
Patch by Sidney San Martín.
-