- 29 May, 2012 22 commits
-
-
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
-
Richard Oudkerk authored
Previously a Python 2.x compatible hack was used for multiprocessing.sharedctypes.Array(). Also the documented signature was wrong.
-
Richard Oudkerk authored
Proxy classes in multiprocessing do not need these methods in Python 3.x.
-
Vinay Sajip authored
-
Hynek Schlawack authored
Patch by Sidney San Martín.
-
Eli Bendersky authored
Add attrib keyword to Element and SubElement in _elementtree. Patch developed with Ezio Melotti.
-
R David Murray authored
-
R David Murray authored
-
R David Murray authored
-
- 28 May, 2012 18 commits
-
-
Richard Oudkerk authored
-
Antoine Pitrou authored
Issue #14775: Fix a potential quadratic dict build-up due to the garbage collector repeatedly trying to untrack dicts. Additional comments by Tim Silk.
-
Antoine Pitrou authored
Issue #14775: Fix a potential quadratic dict build-up due to the garbage collector repeatedly trying to untrack dicts. Additional comments by Tim Silk.
-
Meador Inge authored
An issue in ctypes.c_longdouble, ctypes.c_double, and ctypes.c_float that caused an incorrect exception to be returned in the case of overflow has been fixed.
-
Meador Inge authored
An issue in ctypes.c_longdouble, ctypes.c_double, and ctypes.c_float that caused an incorrect exception to be returned in the case of overflow has been fixed.
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Vinay Sajip authored
Added python3 symlink; removed Distribute-related code, docs and comments; changed Mac OS X computation to determine framework builds.
-
Nick Coghlan authored
-
Nick Coghlan authored
-
Ned Deily authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
Patch by Roger Serwy.
-
R David Murray authored
This commit also restores the news item for 167256 that it looks like Terry inadvertently deleted. (Either that, or I don't understand now merging works...which is equally possible.)
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
Original patch by Roger Serwy.
-
R David Murray authored
-