Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #18448: Fix a typo in Tools/demo/eiffel.py. | Serhiy Storchaka | 2013-07-16 | 1 | -0/+2 |
|\ | |||||
| * | Issue #18448: Fix a typo in Tools/demo/eiffel.py. | Serhiy Storchaka | 2013-07-16 | 1 | -0/+2 |
| | | |||||
* | | Issue #18457: Fixed saving of formulas and complex numbers in Tools/demo/ss1.py. | Serhiy Storchaka | 2013-07-16 | 1 | -0/+3 |
|\ \ | |/ | | | | | | | Useed context managers for file I/O. Removed out-of-dated code and misleading comments. | ||||
| * | Issue #18457: Fixed saving of formulas and complex numbers in Tools/demo/ss1.py. | Serhiy Storchaka | 2013-07-16 | 1 | -0/+3 |
| | | | | | | | | | | Useed context managers for file I/O. Removed out-of-dated code and misleading comments. | ||||
* | | Issue #17778: Fix test discovery for test_multiprocessing. (Patch by | Richard Oudkerk | 2013-07-16 | 1 | -3/+7 |
|\ \ | |/ | | | | | Zachary Ware.) | ||||
| * | Issue #17778: Fix test discovery for test_multiprocessing. (Patch by | Richard Oudkerk | 2013-07-16 | 1 | -0/+3 |
| | | | | | | | | Zachary Ware.) | ||||
* | | - Issue #18440: Clarify that `hash()` can truncate the value returned from an | Barry Warsaw | 2013-07-15 | 1 | -0/+3 |
|\ \ | |/ | | | | | object's custom `__hash__()` method. | ||||
| * | - Issue #18440: Clarify that `hash()` can truncate the value returned from an | Barry Warsaw | 2013-07-15 | 1 | -0/+3 |
| | | | | | | | | object's custom `__hash__()` method. | ||||
* | | Issue #18393: Remove use of deprecated API on OSX | Ronald Oussoren | 2013-07-15 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | The "Gestalt" function on OSX is deprecated (starting with OSX 10.8), remove its usage from the stdlib. The patch removes a number of private functions and a private module, but does not change the public API. The removed code was effectively dead, the platform module has used other code to fetch the OSX version for years and could only use on the Gestalt-based code as a fallback. That fallback can only trigger on broken OSX installs (that is, someone has removed parts of the system install) | ||||
* | | Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). | Richard Oudkerk | 2013-07-15 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). | Richard Oudkerk | 2013-07-15 | 1 | -0/+2 |
| | | |||||
* | | Close issue 17482: don't overwrite __wrapped__ | Nick Coghlan | 2013-07-15 | 1 | -0/+4 |
| | | |||||
* | | Issue #18449: Make Tools/demo/ss1.py work again on Python 3. Patch by | Serhiy Storchaka | 2013-07-15 | 2 | -0/+4 |
|\ \ | |/ | | | | | Févry Thibault. | ||||
| * | Issue #18449: Make Tools/demo/ss1.py work again on Python 3. Patch by | Serhiy Storchaka | 2013-07-15 | 2 | -0/+4 |
| | | | | | | | | Févry Thibault. | ||||
* | | Issue #9893: remove an outdated mention of the Vim-related files. | Brett Cannon | 2013-07-14 | 1 | -1/+0 |
| | | |||||
* | | merge | Raymond Hettinger | 2013-07-13 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #18432: Fix unintended API change in the sched module | Raymond Hettinger | 2013-07-13 | 1 | -0/+3 |
| | | |||||
* | | Merge with 3.3 | Terry Jan Reedy | 2013-07-13 | 2 | -0/+6 |
|\ \ | |/ | |||||
| * | Issue #18279: Add tests for idlelib/RstripExtension.py. Original patch by | Terry Jan Reedy | 2013-07-13 | 2 | -0/+6 |
| | | | | | | | | | | Phil Webster. With that available, modify RstripExtension.py to stop deleting null slices, which caused a file to be marked as changed when it was not. | ||||
* | | Merge: #18431: Decode encoded words in atoms in new email parser. | R David Murray | 2013-07-12 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | #18431: Decode encoded words in atoms in new email parser. | R David Murray | 2013-07-12 | 1 | -0/+3 |
| | | | | | | | | | | | | There is more to be done here in terms of accepting RFC invalid input that some mailers accept, but this covers the valid RFC places where encoded words can occur in structured headers. | ||||
* | | Issue #17845: Clarify the message setup.py prints upon successfully | Brett Cannon | 2013-07-12 | 1 | -0/+2 |
| | | | | | | | | | | | | building Python but having some optional module which didn't build. Patch by Yogesh Chaudhari. | ||||
* | | Issue #18342: Use the repr of a module name for ``from ... import | Brett Cannon | 2013-07-12 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | | ...`` when an ImportError occurs. Other cases had already been switched over to using the repr. Thanks to Tomasz Maćkowiak for the patch. | ||||
* | | Merge: #18044: Fix parsing of encoded words of the form =?utf8?q?=XX...?= | R David Murray | 2013-07-11 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | #18044: Fix parsing of encoded words of the form =?utf8?q?=XX...?= | R David Murray | 2013-07-11 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | The problem was I was only checking for decimal digits after the third '?', not for *hex* digits :(. This changeset also fixes a couple of comment typos, deletes an unused function relating to encoded word parsing, and removed an invalid 'if' test from the folding function that was revealed by the tests written to validate this issue. | ||||
* | | Issue #17872: Fix a segfault in marshal.load() when input stream returns | Serhiy Storchaka | 2013-07-11 | 1 | -0/+3 |
|\ \ | |/ | | | | | more bytes than requested. | ||||
| * | Issue #17872: Fix a segfault in marshal.load() when input stream returns | Serhiy Storchaka | 2013-07-11 | 1 | -0/+3 |
| | | | | | | | | more bytes than requested. | ||||
* | | Issue #18101: Tcl.split() now process strings nested in a tuple as it | Serhiy Storchaka | 2013-07-11 | 1 | -0/+3 |
|\ \ | |/ | | | | | | | | | do with byte strings. Added tests for Tcl.split() and Tcl.splitline(). | ||||
| * | Issue #18101: Tcl.split() now process strings nested in a tuple as it | Serhiy Storchaka | 2013-07-11 | 1 | -0/+3 |
| | | | | | | | | | | | | do with byte strings. Added tests for Tcl.split() and Tcl.splitline(). | ||||
* | | Issue #18338: `python --version` now prints version string to stdout, and | Serhiy Storchaka | 2013-07-11 | 1 | -0/+3 |
| | | | | | | | | not to stderr. Patch by Berker Peksag and Michael Dickens. | ||||
* | | Merge #17987: properly document support.captured_xxx. | R David Murray | 2013-07-11 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | #17987: properly document support.captured_xxx. | R David Murray | 2013-07-11 | 1 | -0/+1 |
| | | | | | | | | Patch by Dmi Baranov. | ||||
* | | Issue #18426: Fix NULL pointer dereference in C extension import when | Christian Heimes | 2013-07-11 | 1 | -0/+3 |
|\ \ | |/ | | | | | PyModule_GetDef() returns an error. | ||||
| * | Issue #18426: Fix NULL pointer dereference in C extension import when | Christian Heimes | 2013-07-11 | 1 | -0/+3 |
| | | | | | | | | PyModule_GetDef() returns an error. | ||||
* | | #18116: getpass no longer always falls back to stdin. | R David Murray | 2013-07-10 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | Also fixes a resource warning that occurred when the fallback is taken. Patch by Serhiy Storchaka. (We couldn't figure out how to write tests for this.) | ||||
* | | #17198: merge with 3.3. | Ezio Melotti | 2013-07-07 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | #17198: Fix a NameError in the dbm module. Patch by Valentina Mukhamedzhanova. | Ezio Melotti | 2013-07-07 | 1 | -0/+3 |
| | | |||||
* | | Merge #18013: Fix cgi.FieldStorage to parse the W3C sample form. | Florent Xicluna | 2013-07-07 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #18013: Fix cgi.FieldStorage to parse the W3C sample form. | Florent Xicluna | 2013-07-07 | 1 | -0/+2 |
| | | |||||
* | | #18020: improve html.escape speed by an order of magnitude. Patch by Matt ↵ | Ezio Melotti | 2013-07-07 | 2 | -0/+4 |
| | | | | | | | | Bryant. | ||||
* | | Issue #17206: On Windows, increase the stack size from 2 MB to 4.2 MB to fix | Victor Stinner | 2013-07-07 | 1 | -0/+4 |
| | | | | | | | | | | a stack overflow in the marshal module (fix a crash in test_marshal). Patch written by Jeremy Kloth. | ||||
* | | Issue #3329: Implement the PEP 445 | Victor Stinner | 2013-07-07 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add new enum: * PyMemAllocatorDomain Add new structures: * PyMemAllocator * PyObjectArenaAllocator Add new functions: * PyMem_RawMalloc(), PyMem_RawRealloc(), PyMem_RawFree() * PyMem_GetAllocator(), PyMem_SetAllocator() * PyObject_GetArenaAllocator(), PyObject_SetArenaAllocator() * PyMem_SetupDebugHooks() Changes: * PyMem_Malloc()/PyObject_Realloc() now always call malloc()/realloc(), instead of calling PyObject_Malloc()/PyObject_Realloc() in debug mode. * PyObject_Malloc()/PyObject_Realloc() now falls back to PyMem_Malloc()/PyMem_Realloc() for allocations larger than 512 bytes. * Redesign debug checks on memory block allocators as hooks, instead of using C macros | ||||
* | | merge for issue #18351. | Brett Cannon | 2013-07-06 | 2 | -0/+4 |
|\ \ | |/ | |||||
| * | Issue #18351: Fix various issues with | Brett Cannon | 2013-07-06 | 2 | -0/+7 |
| | | | | | | | | | | | | | | | | | | importlib._bootstrap._get_sourcefile(). Thanks to its only use by the C API, it was never properly tested until now. Thanks to Neal Norwitz for discovering the bug and Madison May for the patch. | ||||
* | | #18380: merge with 3.3. | Ezio Melotti | 2013-07-06 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | #18380: pass regex flags to the right argument. Patch by Valentina ↵ | Ezio Melotti | 2013-07-06 | 1 | -0/+1 |
| | | | | | | | | Mukhamedzhanova. | ||||
* | | (3.3->default) Issue #12990: The "Python Launcher" on OSX could not launch ↵ | Ronald Oussoren | 2013-07-06 | 1 | -0/+6 |
|\ \ | |/ | | | | | python scripts that have paths that include wide characters. | ||||
| * | Issue #12990: The "Python Launcher" on OSX could not launch python scripts ↵ | Ronald Oussoren | 2013-07-06 | 1 | -0/+3 |
| | | | | | | | | that have paths that include wide characters. | ||||
* | | Issue #18375: merge with 3.3 | Florent Xicluna | 2013-07-06 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #18375: Assume --randomize when --randseed is used for running the ↵ | Florent Xicluna | 2013-07-06 | 1 | -0/+3 |
| | | | | | | | | testsuite. |