- 31 May, 2012 12 commits
-
-
Stefan Krah authored
-
Stefan Krah authored
-
Nick Coghlan authored
-
Stefan Krah authored
-
Nick Coghlan authored
Issue #14963: Added test cases for contextlib.ExitStack exception handling behaviour (Initial patch by Alon Horev)
-
Stefan Krah authored
-
Nick Coghlan authored
-
Nick Coghlan authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Kristjan Valur Jonsson authored
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 authored
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 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Eli Bendersky authored
_elementtree, with a test.
-
Nick Coghlan authored
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 authored
-
Victor Stinner authored
subprocess and trace modules.
-
Ned Deily authored
byte literals supported in Python 3.3.
-
- 29 May, 2012 19 commits
-
-
Brian Curtin authored
-
Brian Curtin authored
-
Brian Curtin authored
-
Brian Curtin authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Ned Deily authored
-
Ned Deily authored
-
R David Murray authored
Patch by Oleg Plakhotnyuk.
-
Victor Stinner authored
-
Victor Stinner authored
-
R David Murray authored
-
R David Murray authored
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 authored
-
Eli Bendersky authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Victor Stinner authored
* 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 authored
-