summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | revert unintended changesBenjamin Peterson2011-03-262-18/+1
| | | | | |
| | * | | | check possible recursive _as_parameter_ to prevent segfault (closes #1838)Benjamin Peterson2011-03-263-1/+30
| | | | | |
* | | | | | Merge with 3.2Ross Lagerwall2011-03-261-0/+1
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Merge with 3.1Ross Lagerwall2011-03-261-0/+1
| |\ \ \ \ \ | | |/ / / /
| | * | | | Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459.Ross Lagerwall2011-03-261-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Patch by Ben Hayden.
* | | | | | Issue #11635: Don't use polling in worker threads and processes launched byAntoine Pitrou2011-03-262-48/+94
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | concurrent.futures.
| * | | | | Issue #11635: Don't use polling in worker threads and processes launched byAntoine Pitrou2011-03-262-79/+93
| | | | | | | | | | | | | | | | | | | | | | | | concurrent.futures.
* | | | | | Merge from 3.2Antoine Pitrou2011-03-261-5/+10
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Read HTTP response inside transient_internet()Antoine Pitrou2011-03-261-5/+10
| |\ \ \ \ \
| | * | | | | test_urllibnet: make it so that transient_internet() applies to theAntoine Pitrou2011-03-261-4/+8
| |/ / / / / | | | | | | | | | | | | | | | | | | whole HTTP exchange, not only the opening.
* | | | | | Issue #9348: Raise an early error if argparse nargs and metavar don't match. ↵Steven Bethard2011-03-262-0/+178
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | (Merge from 3.2.)
| * | | | | Issue #9348: Raise an early error if argparse nargs and metavar don't match.Steven Bethard2011-03-262-0/+178
| | | | | |
* | | | | | Issue #11174: Add argparse.MetavarTypeHelpFormatter, which uses type namesSteven Bethard2011-03-262-4/+60
| | | | | | | | | | | | | | | | | | | | | | | | for the names of optional and positional arguments in help messages.
* | | | | | Merge #11675Mark Dickinson2011-03-262-1/+18
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Merge #11675Mark Dickinson2011-03-262-1/+18
| |\ \ \ \ \ | | |/ / / /
| | * | | | Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects.Mark Dickinson2011-03-262-1/+18
| | | | | |
* | | | | | Branch mergeÉric Araujo2011-03-262-7/+1
|\ \ \ \ \ \
| * | | | | | Remove traces of division_warning left over from Python 2 (#10998)Éric Araujo2011-03-262-7/+1
| | | | | | |
* | | | | | | Merge from 3.2Kurt B. Kaiser2011-03-262-13/+13
|\ \ \ \ \ \ \ | | |/ / / / / | |/| | | | |
| * | | | | | Merge from 3.1Kurt B. Kaiser2011-03-262-13/+13
| |\ \ \ \ \ \ | | | |/ / / / | | |/| | | |
| | * | | | | <Home> toggle failing on Tk 8.5, causing IDLE exits. Issue #4676Kurt B. Kaiser2011-03-262-13/+13
| | | | | | |
* | | | | | | Issue #11666: Teach pydoc to display full help for named tuplesRaymond Hettinger2011-03-252-10/+23
|\ \ \ \ \ \ \ | |/ / / / / / | | | / / / / | |_|/ / / / |/| | | | |
| * | | | | Issue #11666: Teach pydoc to display full help for named tuplesRaymond Hettinger2011-03-252-10/+23
| | | | | |
* | | | | | Merge #9557: eliminate 3 seconds of static overhead from test_mailbox.R David Murray2011-03-251-7/+11
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Merge #9557: eliminate 3 seconds of static overhead from test_mailbox.R David Murray2011-03-251-7/+11
| |\ \ \ \ \ | | |/ / / /
| | * | | | #9557: eliminate 3 seconds of static overhead from test_mailbox.R David Murray2011-03-251-7/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch doesn't quite fix the 'run in a VM with Samba share' timing problem, but it should at least make it better.
* | | | | | Merge #11584: Since __getitem__ returns headers, make decode_header handle them.R David Murray2011-03-252-0/+20
|\ \ \ \ \ \ | |/ / / / /
| * | | | | #11584: Since __getitem__ returns headers, make decode_header handle them.R David Murray2011-03-252-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Why I consider this a bug rather than an API change: the API change was to Message, which didn't used to return Headers unless you added them yourself. Now it does (for 8bit binary header input), so decode_header needs to be able to handle them.
* | | | | | #2650: Merge with 3.2.Ezio Melotti2011-03-252-24/+56
|\ \ \ \ \ \ | |/ / / / /
| * | | | | #2650: Merge with 3.1.Ezio Melotti2011-03-252-24/+56
| |\ \ \ \ \ | | |/ / / /
| | * | | | #2650: Refactor re.escape to use enumerate().Ezio Melotti2011-03-251-2/+1
| | | | | |
| | * | | | #2650: Add tests with non-ascii chars for re.escape.Ezio Melotti2011-03-251-0/+16
| | | | | |
| | * | | | #2650: Refactor the tests for re.escape.Ezio Melotti2011-03-251-22/+40
| | | | | |
| | * | | | Merge 3.1Kurt B. Kaiser2011-03-242-3/+11
| | |\ \ \ \ | | | |_|_|/ | | |/| | |
| | | * | | Merge 3.1Kurt B. Kaiser2011-03-242-3/+11
| | | |\ \ \
| * | | \ \ \ Merge 3.2 headsKurt B. Kaiser2011-03-252-4/+12
| |\ \ \ \ \ \ | | |_|_|_|_|/ | |/| | | | |
* | | | | | | Revert the Lib/test/test_bigmem.py changes from commit 17891566a478 (and aThomas Wouters2011-03-252-28/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | few other assertEqual tests that snuck in), and expand the docstrings and comments explaining why and how these tests are supposed to work.
* | | | | | | Merge headsKurt B. Kaiser2011-03-245-38/+28
|\ \ \ \ \ \ \
| * | | | | | | #11093: make NOTTESTS empty by renaming confusingly named files in test dir.R David Murray2011-03-244-10/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch by Sandro Tosi.
| * | | | | | | #11031: Add --testdir to specify where to find testsR David Murray2011-03-241-2/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch by Sandro Tosi. The main purpose of this option is to allow an alternate set of tests files to be used when running tests of the regrtest tool itself.
| * | | | | | | #11030: make --coverdir work for relative directories again.R David Murray2011-03-241-1/+3
| | | | | | | |
| * | | | | | | Remove test_importable(). Couldn't see how to make this reliable across all ↵Raymond Hettinger2011-03-241-25/+0
| | |_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | platforms.
* | | | | | | Merge 3.2Kurt B. Kaiser2011-03-242-4/+12
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | Merge 3.2Kurt B. Kaiser2011-03-242-4/+12
| |\ \ \ \ \ \
| | * \ \ \ \ \ Merge from 3.2Kurt B. Kaiser2011-03-232-4/+12
| | |\ \ \ \ \ \ | | | | |/ / / / | | | |/| | | |
| | | * | | | | Merge from 3.1Kurt B. Kaiser2011-03-222-4/+12
| | | |\ \ \ \ \ | | | | | |_|_|/ | | | | |/| | |
| | | | * | | | <Home> toggle non-functional when NumLock setKurt B. Kaiser2011-03-212-3/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | on Windows. Issue3851.
* | | | | | | | Isolate the test_source() test in test_collectionsRaymond Hettinger2011-03-241-5/+8
| | | | | | | |
* | | | | | | | Merge #11606: improved body_encode algorithm, no longer produces overlong linesR David Murray2011-03-242-61/+103
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | / / / | | |_|_|/ / / | |/| | | | |
| * | | | | | Merge #11606: improved body_encode algorithm, no longer produces overlong linesR David Murray2011-03-242-61/+103
| |\ \ \ \ \ \ | | | |_|_|/ / | | |/| | | |