summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #17778: Fix test discovery for test_multiprocessing. (Patch byRichard Oudkerk2013-07-162-122/+107
| | | | Zachary Ware.)
* move declaration to top of blockBenjamin Peterson2013-07-161-1/+2
|
* check the return value of new_string() (closes #18470)Benjamin Peterson2013-07-161-36/+46
|
* Issue #18471: Fix typo in heapq documentation (reported by François Pinard).Ned Deily2013-07-161-1/+1
|
* - Issue #18440: Clarify that `hash()` can truncate the value returned from anBarry Warsaw2013-07-153-8/+27
| | | | object's custom `__hash__()` method.
* Closes #18464: fix typo in test name.R David Murray2013-07-151-1/+1
|
* Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all().Richard Oudkerk2013-07-152-48/+47
|
* Issue #18449: Make Tools/demo/ss1.py work again on Python 3. Patch bySerhiy Storchaka2013-07-153-14/+18
| | | | Févry Thibault.
* Issue #18452: fix several "occurrence" typos (reported by Févry Thibault).Ned Deily2013-07-143-4/+4
|
* Issue #18432: Fix unintended API change in the sched moduleRaymond Hettinger2013-07-143-2/+5
|
* Issue #18365: convert buildbot errors to skips.Terry Jan Reedy2013-07-131-1/+4
|
* Issue #18279: Add tests for idlelib/RstripExtension.py. Original patch byTerry Jan Reedy2013-07-135-8/+94
| | | | | 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.
* #18437: fix comment typo.R David Murray2013-07-131-1/+1
|
* Issue #18365: normalize whitespaceTerry Jan Reedy2013-07-132-8/+7
|
* Issue #18365: Add mock Text class and test thereof versus tk.Text.Terry Jan Reedy2013-07-132-5/+449
| | | | Based on patches by Todd.Rovito and Phil Webster.
* #18389: Clarify that relpath does not access the file system.R David Murray2013-07-121-2/+4
| | | | Initial patch by Madison May.
* Issue #18433: Clarified venv documentation.Vinay Sajip2013-07-121-3/+10
|
* Issue #18434: Updated example script to tidy up resources.Vinay Sajip2013-07-121-0/+1
|
* Merged upstream changes.Vinay Sajip2013-07-124-3/+73
|\
| * Merge heads.R David Murray2013-07-124-3/+73
| |\
| | * #18431: Decode encoded words in atoms in new email parser.R David Murray2013-07-124-3/+73
| | | | | | | | | | | | | | | | | | 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 #18435: Replaced simple attribute container class Context with ↵Vinay Sajip2013-07-121-7/+2
|/ / | | | | | | types.SimpleNamespace.
* | Issue #18434: Updated example script in venv docs to use setuptools rather ↵Vinay Sajip2013-07-121-21/+28
|/ | | | than Distribute.
* #18044: Fix parsing of encoded words of the form =?utf8?q?=XX...?=R David Murray2013-07-115-40/+62
| | | | | | | | | | 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-113-15/+35
| | | | more bytes than requested.
* Issue #18085: Add missed const modifier for some entries in refcounts.dat.Serhiy Storchaka2013-07-111-77/+77
|
* Issue #18101: Tcl.split() now process strings nested in a tuple as itSerhiy Storchaka2013-07-113-0/+78
| | | | | | do with byte strings. Added tests for Tcl.split() and Tcl.splitline().
* #17987: properly document support.captured_xxx.R David Murray2013-07-114-16/+47
| | | | Patch by Dmi Baranov.
* Fix reference leaks introduced by the patch for issue #5308.Serhiy Storchaka2013-07-111-12/+11
|
* Issue #18336. Fix a link to StreamReader's read() method.Serhiy Storchaka2013-07-111-1/+1
|
* Issue #18426: improve exception message. Courtesy of AmauryChristian Heimes2013-07-111-1/+5
|
* Issue #18426: Fix NULL pointer dereference in C extension import whenChristian Heimes2013-07-112-0/+5
| | | | PyModule_GetDef() returns an error.
* #18424: PEP8ify the tense of the sum docstring.R David Murray2013-07-101-2/+2
|
* #18399: fix comment typo.R David Murray2013-07-101-1/+1
| | | | Patch by Andrew Rowe.
* Issue #18308: don't take the scope ID into account when comparing IPv6Charles-François Natali2013-07-091-1/+5
| | | | addresses.
* use $(LN) makefile variable instead of lnChristian Heimes2013-07-091-6/+6
|
* #18403: fix an off-by-one typo noticed by Xue Fuqiao.Ezio Melotti2013-07-081-1/+1
|
* Add a couple of tests for str.center with non-ASCII chars.Ezio Melotti2013-07-081-0/+9
|
* #17198: Fix a NameError in the dbm module. Patch by Valentina Mukhamedzhanova.Ezio Melotti2013-07-073-2/+24
|
* Issue #18013: Fix cgi.FieldStorage to parse the W3C sample form.Florent Xicluna2013-07-073-1/+49
|
* Issue #18377: Code cleanup in Python LauncherRonald Oussoren2013-07-078-95/+77
| | | | | This changeset fixes a number of compiler warnings in the Python Launcher binary for OSX. It also cleans up whitespace usage in those sources.
* Cleanup of documentation change from #17860Ronald Oussoren2013-07-072-4/+10
| | | | Reformulated the textual change, and applied it to the docstring as well.
* Issue #18351: Fix various issues withBrett Cannon2013-07-065-3376/+3415
| | | | | | | | | 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: pass regex flags to the right argument. Patch by Valentina ↵Ezio Melotti2013-07-063-1/+6
| | | | Mukhamedzhanova.
* test_ftplib: silence a BytesWarning when checking TypeErrorFlorent Xicluna2013-07-061-1/+2
|
* Issue #12990: The "Python Launcher" on OSX could not launch python scripts ↵Ronald Oussoren2013-07-062-1/+4
| | | | that have paths that include wide characters.
* Issue #18375: Assume --randomize when --randseed is used for running the ↵Florent Xicluna2013-07-062-0/+4
| | | | testsuite.
* Issue #17860: explicitly mention that std* streams are opened in binary mode ↵Ronald Oussoren2013-07-061-2/+4
| | | | | | | | | by default. The documentation does mention that the streams are opened in text mode when univeral_newlines is true, but not that that they are opened in binary mode when that argument is false and that seems to confuse at least some users.
* Issue #18347: ElementTree's html serializer now preserves the case of ↵Christian Heimes2013-07-043-3/+13
| | | | closing tags.
* Issue #11185: Fix test_wait4 under AIX. Patch by Sébastien Sablé.Antoine Pitrou2013-07-042-1/+9
|