Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove unexpected headings from Misc/NEWS | Antoine Pitrou | 2013-10-13 | 1 | -8/+0 |
| | |||||
* | Issue #18776: atexit callbacks now display their full traceback when they ↵ | Antoine Pitrou | 2013-10-13 | 1 | -0/+3 |
|\ | | | | | | | raise an exception. | ||||
| * | Issue #18776: atexit callbacks now display their full traceback when they ↵ | Antoine Pitrou | 2013-10-13 | 1 | -0/+3 |
| | | | | | | | | raise an exception. | ||||
| * | Merge heads | Serhiy Storchaka | 2013-10-13 | 1 | -0/+3 |
| |\ | |||||
* | | | pdb: modernize find_function() and add tests for it. | Georg Brandl | 2013-10-13 | 1 | -0/+2 |
| | | | | | | | | | | | | Closes #18714. | ||||
* | | | Merge heads | Serhiy Storchaka | 2013-10-13 | 1 | -0/+3 |
|\ \ \ | |||||
| * \ \ | Issue #17827: document codecs.encode and codecs.decode | Nick Coghlan | 2013-10-13 | 1 | -0/+3 |
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Merge from 3.3 - Added to What's New since these are more important in 3.x, as the bytes<->bytes and str<->str codecs don't fit the text model convenience methods in 3.x the way they did the basestring<->basestring methods in the 2.x text model - Included under Library in Misc/NEWS for the same reason | ||||
| | * | | Issue #17827: Document codecs.encode and codecs.decode | Nick Coghlan | 2013-10-13 | 1 | -0/+3 |
| | | | | |||||
* | | | | Issue #18919: Unified and extended tests for audio modules: aifc, sunau and | Serhiy Storchaka | 2013-10-13 | 1 | -0/+6 |
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | wave. | ||||
| * | | Issue #18919: Unified and extended tests for audio modules: aifc, sunau and | Serhiy Storchaka | 2013-10-13 | 1 | -0/+3 |
| |/ | | | | | | | wave. | ||||
| * | Issue #18458: Prevent crashes with newer versions of libedit. Its readline | Ned Deily | 2013-10-12 | 1 | -0/+4 |
| | | | | | | | | | | emulation has changed from 0-based indexing to 1-based like gnu readline. Original patch by Ronald Oussoren. | ||||
| * | Issue #18919: If the close() method of a writer in the sunau or wave module | Serhiy Storchaka | 2013-10-12 | 1 | -0/+4 |
| | | | | | | | | | | failed, second invocation of close() and destructor no more raise an exception. | ||||
* | | Issue #19218: Rename collections.abc to _collections_abc in order to speed ↵ | Christian Heimes | 2013-10-13 | 1 | -0/+3 |
| | | | | | | | | up interpreter start | ||||
* | | Issue #18582: Add 'pbkdf2_hmac' to the hashlib module. | Christian Heimes | 2013-10-12 | 1 | -0/+3 |
| | | |||||
* | | Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py". | Antoine Pitrou | 2013-10-12 | 1 | -0/+3 |
| | | | | | | | | ("make smelly" now clean) | ||||
* | | Forgot NEWS entry for previous commit. | Antoine Pitrou | 2013-10-12 | 1 | -0/+3 |
| | | |||||
* | | Issue #19131: The aifc module now correctly reads and writes sampwidth of | Serhiy Storchaka | 2013-10-12 | 1 | -0/+3 |
|\ \ | |/ | | | | | compressed streams. | ||||
| * | Issue #19131: The aifc module now correctly reads and writes sampwidth of | Serhiy Storchaka | 2013-10-12 | 1 | -0/+3 |
| | | | | | | | | compressed streams. | ||||
* | | Issue #19209: Remove import of copyreg from the os module to speed up | Christian Heimes | 2013-10-11 | 1 | -0/+4 |
| | | | | | | | | | | | | interpreter startup. stat_result and statvfs_result are now hard-coded to reside in the os module. The patch is based on Victor Stinner's patch. | ||||
* | | Issue #19205: Don't import the 're' module in site and sysconfig module to | Christian Heimes | 2013-10-11 | 1 | -0/+3 |
| | | | | | | | | to speed up interpreter start. | ||||
* | | Issue #9548: Add a minimal "_bootlocale" module that is imported by the _io ↵ | Antoine Pitrou | 2013-10-11 | 1 | -0/+3 |
| | | | | | | | | module instead of the full locale module. | ||||
* | | Rename contextlib.ignored() to contextlib.ignore(). | Raymond Hettinger | 2013-10-11 | 1 | -2/+2 |
| | | |||||
* | | upgrade unicode db to 6.3.0 (closes #19221) | Benjamin Peterson | 2013-10-10 | 1 | -0/+2 |
| | | |||||
* | | 18764: remove the problematic 'print' alias for the PDB 'p' command. | R David Murray | 2013-10-10 | 1 | -0/+3 |
| | | | | | | | | | | | | So that it no longer shadows the print function. Patch by Connor Osborn, doc and test changes by R. David Murray. | ||||
* | | Close #16742: Fix misuse of memory allocations in PyOS_Readline() | Victor Stinner | 2013-10-10 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The GIL must be held to call PyMem_Malloc(), whereas PyOS_Readline() releases the GIL to read input. The result of the C callback PyOS_ReadlineFunctionPointer must now be a string allocated by PyMem_RawMalloc() or PyMem_RawRealloc() (or NULL if an error occurred), instead of a string allocated by PyMem_Malloc() or PyMem_Realloc(). Fixing this issue was required to setup a hook on PyMem_Malloc(), for example using the tracemalloc module. PyOS_Readline() copies the result of PyOS_ReadlineFunctionPointer() into a new buffer allocated by PyMem_Malloc(). So the public API of PyOS_Readline() does not change. | ||||
* | | Issue #15805: Add contextlib.redirect_stdout() | Raymond Hettinger | 2013-10-10 | 1 | -0/+2 |
| | | |||||
* | | Repair format of NEWS entry. | Tim Peters | 2013-10-09 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Repair format of NEWS entry. | Tim Peters | 2013-10-09 | 1 | -1/+2 |
| | | |||||
* | | Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. | Tim Peters | 2013-10-09 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. | Tim Peters | 2013-10-09 | 1 | -0/+2 |
| | | |||||
* | | Close #19199: Remove ``PyThreadState.tick_counter`` field | Victor Stinner | 2013-10-09 | 1 | -0/+2 |
| | | |||||
* | | Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at ↵ | Antoine Pitrou | 2013-10-07 | 1 | -0/+3 |
|\ \ | |/ | | | | | least one place so as to avoid regressions. | ||||
| * | Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at ↵ | Antoine Pitrou | 2013-10-07 | 1 | -0/+3 |
| | | | | | | | | least one place so as to avoid regressions. | ||||
| * | [issue19152] Revert 832579dbafd6. | Eric Snow | 2013-10-03 | 1 | -2/+0 |
| | | |||||
* | | Issue #18972: Modernize email examples and use the argparse module in them. | Serhiy Storchaka | 2013-10-06 | 1 | -0/+5 |
| | | |||||
* | | Issue #19087: Improve bytearray allocation in order to allow cheap popping ↵ | Antoine Pitrou | 2013-10-05 | 1 | -0/+3 |
| | | | | | | | | of data at the front (slice deletion). | ||||
* | | Issue #18716: Deprecate the formatter module | Brett Cannon | 2013-10-04 | 1 | -0/+2 |
| | | |||||
* | | Fix typo. | Eric Snow | 2013-10-03 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix typo. | Eric Snow | 2013-10-03 | 1 | -1/+1 |
| | | |||||
| * | [issue19152] Add ExtensionFileLoader.get_filename(). | Eric Snow | 2013-10-03 | 1 | -0/+2 |
| | | |||||
| * | [issue19151] Fix docstring and use of _get_suppported_file_loaders() to ↵ | Eric Snow | 2013-10-03 | 1 | -0/+3 |
| | | | | | | | | reflect 2-tuples. | ||||
* | | [issue19151] Fix issue number in Misc/NEWS entry. | Eric Snow | 2013-10-03 | 1 | -1/+1 |
| | | |||||
* | | [issue19152] Add ExtensionFileLoader.get_filename(). | Eric Snow | 2013-10-03 | 1 | -0/+2 |
| | | |||||
* | | [issue19951] Fix docstring and use of _get_suppported_file_loaders() to ↵ | Eric Snow | 2013-10-03 | 1 | -0/+3 |
| | | | | | | | | reflect 2-tuples. | ||||
* | | Issue #19014: memoryview.cast() is now allowed on zero-length views. | Antoine Pitrou | 2013-10-03 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Issue #19014: memoryview.cast() is now allowed on zero-length views. | Antoine Pitrou | 2013-10-03 | 1 | -0/+2 |
| | | |||||
* | | Issue #18037: 2to3 now escapes '\u' and '\U' in native strings. | Serhiy Storchaka | 2013-10-03 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #18037: 2to3 now escapes '\u' and '\U' in native strings. | Serhiy Storchaka | 2013-10-03 | 1 | -0/+2 |
| | | |||||
* | | Close #17839: support bytes-like objects in base64 module | Nick Coghlan | 2013-10-02 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | This mostly affected the encodebytes and decodebytes function (which are used by base64_codec) Also added a test to ensure all bytes-bytes codecs can handle memoryview input and tests for handling of multidimensional and non-bytes format input in the modern base64 API. | ||||
* | | Close #18690: register memoryview with Sequence ABC | Nick Coghlan | 2013-10-02 | 1 | -0/+3 |
| | |