summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* #17329: merge with 3.3.Ezio Melotti2013-03-271-1/+1
|\
| * #17329: merge with 3.2.Ezio Melotti2013-03-271-1/+1
| |\
| | * #17329: document unittest.SkipTest. Initial patch by Zachary Ware.Ezio Melotti2013-03-271-1/+1
| | |
* | | Issue #17516: remove dead codeVictor Stinner2013-03-263-9/+0
| | |
* | | Issue #17516: do not create useless tuple: remove dummy commas in testsVictor Stinner2013-03-264-11/+11
| | |
* | | Issue #17516: use comment syntax for comments, instead of multiline stringVictor Stinner2013-03-2610-507/+493
| | |
* | | #17323: The "[X refs, Y blocks]" printed by debug builds has been disabled ↵Ezio Melotti2013-03-251-0/+28
| | | | | | | | | | | | by default. It can be re-enabled with the `-X showrefcount` option.
* | | Issue #17025: multiprocessing: Reduce Queue and SimpleQueue contention.Charles-François Natali2013-03-251-43/+26
| | |
* | | mergeRaymond Hettinger2013-03-241-0/+68
|\ \ \ | |/ /
| * | Add missing docstrings to the collections ABCsRaymond Hettinger2013-03-241-0/+68
| | |
* | | - Issue #17536: Add to webbrowser's browser list: www-browser, x-www-browser,doko@ubuntu.com2013-03-241-0/+6
|\ \ \ | |/ / | | | | | | iceweasel, iceape.
| * | - Issue #17536: Add to webbrowser's browser list: www-browser, x-www-browser,doko@ubuntu.com2013-03-241-0/+6
| | | | | | | | | | | | iceweasel, iceape.
* | | Issue #17025: Add dumps() and loads() to ForkingPickler.Charles-François Natali2013-03-242-5/+13
| | |
* | | #17504: merge with 3.3.Ezio Melotti2013-03-241-3/+0
|\ \ \ | |/ /
| * | #17504: remove duplicated sentence. Patch by Radu Voicilas.Ezio Melotti2013-03-241-3/+0
| | |
* | | Merge test_queue clean up from 3.3.Ezio Melotti2013-03-231-1/+4
|\ \ \ | |/ /
| * | Merge test_queue clean up from 3.2.Ezio Melotti2013-03-231-1/+4
| |\ \ | | |/
| | * Clean up references to threads in test_queue.Ezio Melotti2013-03-231-1/+4
| | |
* | | Issue #17150: pprint now uses line continuations to wrap long string literals.Antoine Pitrou2013-03-232-5/+72
| | |
* | | Fixes issue #17488: Change the subprocess.Popen bufsize parameter default valueGregory P. Smith2013-03-232-9/+37
|\ \ \ | |/ / | | | | | | | | | | | | from unbuffered (0) to buffering (-1) to match the behavior existing code expects and match the behavior of the subprocess module in Python 2 to avoid introducing hard to track down bugs.
| * | Fixes issue #17488: Change the subprocess.Popen bufsize parameter default valueGregory P. Smith2013-03-232-9/+37
| |\ \ | | |/ | | | | | | | | | | | | from unbuffered (0) to buffering (-1) to match the behavior existing code expects and match the behavior of the subprocess module in Python 2 to avoid introducing hard to track down bugs.
| | * Fixes issue #17488: Change the subprocess.Popen bufsize parameter default valueGregory P. Smith2013-03-232-9/+31
| | | | | | | | | | | | | | | | | | from unbuffered (0) to buffering (-1) to match the behavior existing code expects and match the behavior of the subprocess module in Python 2 to avoid introducing hard to track down bugs.
* | | #17510: avoid using deprecated assertEquals method in test_program. Patch ↵Ezio Melotti2013-03-231-2/+2
| | | | | | | | | | | | by Daniel Black.
* | | #17479: merge with 3.3.Ezio Melotti2013-03-231-3/+4
|\ \ \ | |/ /
| * | #17479: test_io now works with unittest test discovery. Patch by Zachary Ware.Ezio Melotti2013-03-231-3/+4
| | |
| * | Backport improved dict comparison logicRaymond Hettinger2013-03-231-2/+1
| | |
* | | Closes #17521: Merged fix from 3.3.Vinay Sajip2013-03-232-4/+34
|\ \ \ | |/ /
| * | Issue #17521: Merged fix from 3.2.Vinay Sajip2013-03-232-4/+34
| |\ \ | | |/
| | * Issue #17521: Corrected non-enabling of logger following two calls to ↵Vinay Sajip2013-03-232-4/+34
| | | | | | | | | | | | fileConfig().
* | | Closes #17508: Merged fix from 3.3.Vinay Sajip2013-03-222-6/+61
|\ \ \ | |/ /
| * | Issue #17508: Merged fix from 3.2.Vinay Sajip2013-03-222-6/+61
| |\ \ | | |/
| | * Issue #17508: Handled out-of-order handler configuration correctly.Vinay Sajip2013-03-222-6/+60
| | |
* | | copy 2.7 magic numbers for historical interestBenjamin Peterson2013-03-221-0/+6
| | |
* | | #17472: add tests for a couple of untested methods in urllib.urlparse.R David Murray2013-03-221-0/+8
| | | | | | | | | | | | Original patch by Daniel Wozniak.
* | | test_ast: pass the filename to ast.parse()Victor Stinner2013-03-211-1/+1
| | |
* | | - Issue #16754: Fix the incorrect shared library extension on linux. Introducedoko@ubuntu.com2013-03-215-13/+13
|\ \ \ | |/ / | | | | | | | | | two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
| * | - Issue #16754: Fix the incorrect shared library extension on linux. Introducedoko@ubuntu.com2013-03-215-11/+14
| |\ \ | | |/ | | | | | | | | | two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
| | * - Issue #16754: Fix the incorrect shared library extension on linux. Introducedoko@ubuntu.com2013-03-215-11/+14
| | | | | | | | | | | | | | | two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
* | | Merge: #5713: One more test_smtplib timing fix.R David Murray2013-03-211-1/+1
|\ \ \ | |/ /
| * | #5713: One more test_smtplib timing fix.R David Murray2013-03-211-1/+1
| | |
* | | Fix importRaymond Hettinger2013-03-211-2/+1
| | |
* | | Merge: #5712: Preemptively fix some other possible timing issues.R David Murray2013-03-211-3/+3
|\ \ \ | |/ /
| * | Merge: #5712: Preemptively fix some other possible timing issues.R David Murray2013-03-211-3/+3
| |\ \ | | |/
| | * #5712: Preemptively fix some other possible timing issues.R David Murray2013-03-211-3/+3
| | |
* | | Merge: #5713: fix timing issue in smtplib tests.R David Murray2013-03-211-0/+3
|\ \ \ | |/ /
| * | Merge: #5713: fix timing issue in smtplib tests.R David Murray2013-03-211-0/+3
| |\ \ | | |/
| | * #5713: fix timing issue in smtplib tests.R David Murray2013-03-211-0/+3
| | |
* | | mergeGregory P. Smith2013-03-211-4/+3
|\ \ \ | |/ /
| * | mergeGregory P. Smith2013-03-211-4/+3
| |\ \ | | |/
| | * remove the long obsolete mention of universal newlines mode only beingGregory P. Smith2013-03-211-4/+3
| | | | | | | | | | | | available when configured at compile time.