summaryrefslogtreecommitdiff
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #18448: Fix a typo in Tools/demo/eiffel.py.Serhiy Storchaka2013-07-161-0/+2
|\
| * Issue #18448: Fix a typo in Tools/demo/eiffel.py.Serhiy Storchaka2013-07-161-0/+2
| |
* | Issue #18457: Fixed saving of formulas and complex numbers in Tools/demo/ss1.py.Serhiy Storchaka2013-07-161-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 Storchaka2013-07-161-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 byRichard Oudkerk2013-07-161-3/+7
|\ \ | |/ | | | | Zachary Ware.)
| * Issue #17778: Fix test discovery for test_multiprocessing. (Patch byRichard Oudkerk2013-07-161-0/+3
| | | | | | | | Zachary Ware.)
* | - Issue #18440: Clarify that `hash()` can truncate the value returned from anBarry Warsaw2013-07-151-0/+3
|\ \ | |/ | | | | object's custom `__hash__()` method.
| * - Issue #18440: Clarify that `hash()` can truncate the value returned from anBarry Warsaw2013-07-151-0/+3
| | | | | | | | object's custom `__hash__()` method.
* | Issue #18393: Remove use of deprecated API on OSXRonald Oussoren2013-07-151-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 Oudkerk2013-07-151-0/+2
|\ \ | |/
| * Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all().Richard Oudkerk2013-07-151-0/+2
| |
* | Close issue 17482: don't overwrite __wrapped__Nick Coghlan2013-07-151-0/+4
| |
* | Issue #18449: Make Tools/demo/ss1.py work again on Python 3. Patch bySerhiy Storchaka2013-07-152-0/+4
|\ \ | |/ | | | | Févry Thibault.
| * Issue #18449: Make Tools/demo/ss1.py work again on Python 3. Patch bySerhiy Storchaka2013-07-152-0/+4
| | | | | | | | Févry Thibault.
* | Issue #9893: remove an outdated mention of the Vim-related files.Brett Cannon2013-07-141-1/+0
| |
* | mergeRaymond Hettinger2013-07-131-0/+3
|\ \ | |/
| * Issue #18432: Fix unintended API change in the sched moduleRaymond Hettinger2013-07-131-0/+3
| |
* | Merge with 3.3Terry Jan Reedy2013-07-132-0/+6
|\ \ | |/
| * Issue #18279: Add tests for idlelib/RstripExtension.py. Original patch byTerry Jan Reedy2013-07-132-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 Murray2013-07-121-0/+3
|\ \ | |/
| * #18431: Decode encoded words in atoms in new email parser.R David Murray2013-07-121-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 successfullyBrett Cannon2013-07-121-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 ... importBrett Cannon2013-07-122-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 Murray2013-07-111-0/+4
|\ \ | |/
| * #18044: Fix parsing of encoded words of the form =?utf8?q?=XX...?=R David Murray2013-07-111-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 returnsSerhiy Storchaka2013-07-111-0/+3
|\ \ | |/ | | | | more bytes than requested.
| * Issue #17872: Fix a segfault in marshal.load() when input stream returnsSerhiy Storchaka2013-07-111-0/+3
| | | | | | | | more bytes than requested.
* | Issue #18101: Tcl.split() now process strings nested in a tuple as itSerhiy Storchaka2013-07-111-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 itSerhiy Storchaka2013-07-111-0/+3
| | | | | | | | | | | | do with byte strings. Added tests for Tcl.split() and Tcl.splitline().
* | Issue #18338: `python --version` now prints version string to stdout, andSerhiy Storchaka2013-07-111-0/+3
| | | | | | | | not to stderr. Patch by Berker Peksag and Michael Dickens.
* | Merge #17987: properly document support.captured_xxx.R David Murray2013-07-111-0/+1
|\ \ | |/
| * #17987: properly document support.captured_xxx.R David Murray2013-07-111-0/+1
| | | | | | | | Patch by Dmi Baranov.
* | Issue #18426: Fix NULL pointer dereference in C extension import whenChristian Heimes2013-07-111-0/+3
|\ \ | |/ | | | | PyModule_GetDef() returns an error.
| * Issue #18426: Fix NULL pointer dereference in C extension import whenChristian Heimes2013-07-111-0/+3
| | | | | | | | PyModule_GetDef() returns an error.
* | #18116: getpass no longer always falls back to stdin.R David Murray2013-07-101-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 Melotti2013-07-071-0/+3
|\ \ | |/
| * #17198: Fix a NameError in the dbm module. Patch by Valentina Mukhamedzhanova.Ezio Melotti2013-07-071-0/+3
| |
* | Merge #18013: Fix cgi.FieldStorage to parse the W3C sample form.Florent Xicluna2013-07-071-0/+2
|\ \ | |/
| * Issue #18013: Fix cgi.FieldStorage to parse the W3C sample form.Florent Xicluna2013-07-071-0/+2
| |
* | #18020: improve html.escape speed by an order of magnitude. Patch by Matt ↵Ezio Melotti2013-07-072-0/+4
| | | | | | | | Bryant.
* | Issue #17206: On Windows, increase the stack size from 2 MB to 4.2 MB to fixVictor Stinner2013-07-071-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 445Victor Stinner2013-07-071-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 Cannon2013-07-062-0/+4
|\ \ | |/
| * Issue #18351: Fix various issues withBrett Cannon2013-07-062-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 Melotti2013-07-061-0/+1
|\ \ | |/
| * #18380: pass regex flags to the right argument. Patch by Valentina ↵Ezio Melotti2013-07-061-0/+1
| | | | | | | | Mukhamedzhanova.
* | (3.3->default) Issue #12990: The "Python Launcher" on OSX could not launch ↵Ronald Oussoren2013-07-061-0/+6
|\ \ | |/ | | | | python scripts that have paths that include wide characters.
| * Issue #12990: The "Python Launcher" on OSX could not launch python scripts ↵Ronald Oussoren2013-07-061-0/+3
| | | | | | | | that have paths that include wide characters.
* | Issue #18375: merge with 3.3Florent Xicluna2013-07-061-0/+3
|\ \ | |/
| * Issue #18375: Assume --randomize when --randseed is used for running the ↵Florent Xicluna2013-07-061-0/+3
| | | | | | | | testsuite.