Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bump version to 3.3.0a4.v3.3.0a4 | Georg Brandl | 2012-05-30 | 6 | -7/+7 |
| | |||||
* | Update pydoc topics and fix new suspicious markup. | Georg Brandl | 2012-05-30 | 6 | -15/+47 |
| | |||||
* | Close #14947: add missing cross-reference to Language Definition from the ↵ | Nick Coghlan | 2012-05-30 | 1 | -13/+18 |
| | | | | new dynamic type creation functions. Also cleaned up the general wording of the docs | ||||
* | #14796: fix failure of new calendar test on windows. | R David Murray | 2012-05-30 | 1 | -2/+3 |
| | |||||
* | Close #14690: Use monotonic clock instead of system clock in the sched, | Victor Stinner | 2012-05-30 | 4 | -8/+23 |
| | | | | subprocess and trace modules. | ||||
* | Issue #14958: Change IDLE systax highlighting to recognize all string and | Ned Deily | 2012-05-30 | 2 | -4/+8 |
| | | | | byte literals supported in Python 3.3. | ||||
* | Merge 3.2 news item | Brian Curtin | 2012-05-29 | 1 | -0/+2 |
|\ | |||||
| * | Add news item for #14943 | Brian Curtin | 2012-05-29 | 1 | -0/+3 |
| | | |||||
* | | Fix #14943. Merge 3.2 | Brian Curtin | 2012-05-29 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Fix #14943. Update the proper default value and list the proper argument ↵ | Brian Curtin | 2012-05-29 | 1 | -3/+3 |
| | | | | | | | | names in the explanation. | ||||
* | | Reapplied skip logic for test on Windows, which appears to have been lost ↵ | Vinay Sajip | 2012-05-29 | 1 | -0/+1 |
| | | | | | | | | during a merge. | ||||
* | | Updated test to reflect renamed file. | Vinay Sajip | 2012-05-29 | 1 | -1/+1 |
| | | |||||
* | | Issue #10997: merge from 3.2 | Ned Deily | 2012-05-29 | 2 | -1/+3 |
|\ \ | |/ | |||||
| * | Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu. | Ned Deily | 2012-05-29 | 2 | -1/+3 |
| | | |||||
* | | #14796: improve calendar test coverage. | R David Murray | 2012-05-29 | 1 | -9/+211 |
| | | | | | | | | Patch by Oleg Plakhotnyuk. | ||||
* | | Issue #14744: Fix compilation on Windows (part 2) | Victor Stinner | 2012-05-29 | 1 | -1/+1 |
| | | |||||
* | | Issue #14744: Fix compilation on Windows | Victor Stinner | 2012-05-29 | 1 | -2/+2 |
| | | |||||
* | | #10839: add new test file that was omitted from checkin | R David Murray | 2012-05-29 | 1 | -0/+18 |
| | | |||||
* | | #10839: raise an error on add of duplicate unique headers in new email policies | R David Murray | 2012-05-29 | 4 | -0/+62 |
| | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | | merge heads | Eli Bendersky | 2012-05-29 | 3 | -6/+71 |
|\ \ | |||||
| * \ | Merged upstream changes. | Vinay Sajip | 2012-05-29 | 17 | -453/+893 |
| |\ \ | |||||
| * | | | Added pyvenv docs to 'Python Setup and Usage' section. | Vinay Sajip | 2012-05-29 | 3 | -6/+71 |
| | | | | |||||
* | | | | Issue #14007: make TreeBuilder an actual type exposed from _elementtree, and ↵ | Eli Bendersky | 2012-05-29 | 2 | -74/+91 |
| |/ / |/| | | | | | | | | subclassable. | ||||
* | | | Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args ↵ | Victor Stinner | 2012-05-29 | 12 | -434/+875 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and str.format(args) * 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. | ||||
* | | | PyArg_Parse*("U"): ensure that the Unicode string is ready | Victor Stinner | 2012-05-29 | 1 | -1/+4 |
| | | | |||||
* | | | Use Python 3.x-style keyword only arg in Array() | Richard Oudkerk | 2012-05-29 | 3 | -12/+9 |
| | | | | | | | | | | | | | | | | | | Previously a Python 2.x compatible hack was used for multiprocessing.sharedctypes.Array(). Also the documented signature was wrong. | ||||
* | | | Remove __getslice__, __setslice__, __delslice__ methods from proxies | Richard Oudkerk | 2012-05-29 | 1 | -6/+5 |
|/ / | | | | | | | Proxy classes in multiprocessing do not need these methods in Python 3.x. | ||||
* | | Removed pysetup3.exe executable. | Vinay Sajip | 2012-05-29 | 2 | -0/+0 |
| | | |||||
* | | #14835: Make plistlib output empty arrays & dicts like OS X | Hynek Schlawack | 2012-05-29 | 4 | -12/+28 |
| | | | | | | | | Patch by Sidney San Martín. | ||||
* | | Issue 14814: Add namespaces keyword arg to find(*) methods in _elementtree. | Eli Bendersky | 2012-05-29 | 4 | -34/+169 |
| | | | | | | | | | | Add attrib keyword to Element and SubElement in _elementtree. Patch developed with Ezio Melotti. | ||||
* | | Refactor test_email/test_pickleable and add tests for date headers | R David Murray | 2012-05-29 | 1 | -28/+59 |
| | | |||||
* | | Regularize test_email/test_headerregistry's references to policy. | R David Murray | 2012-05-29 | 1 | -6/+6 |
| | | |||||
* | | Refactor test_email/test_defect_handling. | R David Murray | 2012-05-29 | 2 | -179/+162 |
| | | |||||
* | | Issue #14930: Make memoryview objects weakrefable. | Richard Oudkerk | 2012-05-28 | 5 | -2/+23 |
| | | |||||
* | | Issue #14775: Fix a potential quadratic dict build-up due to the garbage ↵ | Antoine Pitrou | 2012-05-28 | 3 | -3/+61 |
|\ \ | |/ | | | | | | | | | collector repeatedly trying to untrack dicts. Additional comments by Tim Silk. | ||||
| * | Issue #14775: Fix a potential quadratic dict build-up due to the garbage ↵ | Antoine Pitrou | 2012-05-28 | 3 | -3/+61 |
| | | | | | | | | | | | | collector repeatedly trying to untrack dicts. Additional comments by Tim Silk. | ||||
* | | Issue #9041: raised exception is misleading | Meador Inge | 2012-05-28 | 3 | -25/+19 |
|\ \ | |/ | | | | | | | | | 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. | ||||
| * | Issue #9041: raised exception is misleading | Meador Inge | 2012-05-28 | 3 | -25/+19 |
| | | | | | | | | | | | | 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. | ||||
* | | Fixed typo. | Vinay Sajip | 2012-05-28 | 1 | -1/+1 |
| | | |||||
* | | Tweaked tests to use launcher executable name on OS X. | Vinay Sajip | 2012-05-28 | 1 | -1/+5 |
| | | |||||
* | | Added python3 symlink; removed Distribute-related code, docs and comments; ↵ | Vinay Sajip | 2012-05-28 | 1 | -126/+16 |
| | | | | | | | | changed Mac OS X computation to determine framework builds. | ||||
* | | Merge from 3.2 | Nick Coghlan | 2012-05-28 | 2 | -1/+5 |
|\ \ | |/ | |||||
| * | Issue #14443: Tell rpmbuild to use the correct version of Python | Nick Coghlan | 2012-05-28 | 2 | -1/+5 |
| | | |||||
* | | Issue #14660: Install namespace_pkgs test directories and files. | Ned Deily | 2012-05-28 | 1 | -0/+18 |
| | | |||||
* | | Merge 3.2 #14929 | Terry Jan Reedy | 2012-05-28 | 2 | -1/+4 |
|\ \ | |/ | |||||
| * | Issue14929: Stop Idle 3.x from closing on Unicode decode errors when grepping. | Terry Jan Reedy | 2012-05-28 | 2 | -1/+4 |
| | | | | | | | | Patch by Roger Serwy. | ||||
* | | #12515: email now registers a defect if the MIME end boundary is missing. | R David Murray | 2012-05-28 | 5 | -3/+59 |
| | | | | | | | | | | | | 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.) | ||||
* | | merge heads | Terry Jan Reedy | 2012-05-28 | 0 | -0/+0 |
|\ \ | |||||
| * | | News item for #1672568. | R David Murray | 2012-05-28 | 1 | -0/+4 |
| | | | |||||
* | | | Merge 3.2 closes #12510 | Terry Jan Reedy | 2012-05-28 | 2 | -3/+9 |
|\ \ \ | |/ / |/| / | |/ |