summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Avoid failing in test_urllibnet.test_bad_address when some overzealousAntoine Pitrou2011-07-081-0/+8
|\
| * Avoid failing in test_urllibnet.test_bad_address when some overzealousAntoine Pitrou2011-07-081-0/+8
* | Issue #12440: When testing whether some bits in SSLContext.options can beAntoine Pitrou2011-07-081-1/+1
|\ \ | |/
| * Issue #12440: When testing whether some bits in SSLContext.options can beAntoine Pitrou2011-07-081-1/+1
* | Issue #12016: Multibyte CJK decoders now resynchronize fasterVictor Stinner2011-07-076-57/+96
* | Revert 76452b892838 as per http://mail.python.org/pipermail/python-dev/2011-J...Georg Brandl2011-07-061-4/+4
* | Normalize whitespace for #11512 fix.Brian Curtin2011-07-061-7/+7
* | Fix #11512. Add an initial test suite for the cgitb, providing 75% coverage.Brian Curtin2011-07-061-0/+55
* | Issue #12459: time.sleep() now raises a ValueError if the sleep length isVictor Stinner2011-07-051-0/+2
* | (merge 3.2) Issue #12493: skip test_communicate_eintr() if signal.SIGALRM is ...Victor Stinner2011-07-051-0/+2
|\ \ | |/
| * Issue #12493: skip test_communicate_eintr() if signal.SIGALRM is missingVictor Stinner2011-07-051-0/+2
* | (merge 3.2) Issue #12493: subprocess: communicate() handles EINTRVictor Stinner2011-07-051-0/+16
|\ \ | |/
| * Issue #12493: subprocess: communicate() handles EINTRVictor Stinner2011-07-051-0/+16
* | Issue #12497: Install test/data to prevent failures of the various codecmapsNed Deily2011-07-051-1/+1
|\ \ | |/
| * Issue #12497: Install test/data to prevent failures of the various codecmapsNed Deily2011-07-051-1/+1
* | Issue #12469: fix signal order check of test_signalVictor Stinner2011-07-041-5/+6
* | Issue #12469: test_signal checks wakeup signals order, except on freebsd6Victor Stinner2011-07-041-4/+4
* | Issue #12469: partial revert of 024827a9db64, freebsd6 thread initializationVictor Stinner2011-07-041-3/+0
* | Issue #12469: replace assertions by explicit if+raiseVictor Stinner2011-07-041-16/+32
* | (merge 3.2) Issue #12469: Run wakeup and pending signal tests in a subprocessVictor Stinner2011-07-041-238/+256
|\ \ | |/
| * Issue #12469: Run "wakeup" signal tests in subprocess to run the test in aVictor Stinner2011-07-041-37/+68
| * Issue #12429: Skip interrupted write tests on FreeBSD <= 7Victor Stinner2011-07-041-0/+2
* | Issue #8716: Avoid crashes caused by Aqua Tk on OSX when attempting to runNed Deily2011-07-042-8/+8
|\ \ | |/
| * Issue #8716: Avoid crashes caused by Aqua Tk on OSX when attempting to runNed Deily2011-07-042-8/+8
* | merge from 3.2Senthil Kumaran2011-07-041-0/+1
|\ \ | |/
| * Fix closes issue12471 - wrong TypeError message when '%i' format spec was used.Senthil Kumaran2011-07-041-0/+1
* | merge from 3.2Senthil Kumaran2011-07-041-1/+1
|\ \ | |/
| * Fix closes issue issue12470 - check for utime for the skipUnless condition.Senthil Kumaran2011-07-041-1/+1
* | (merge 3.2) Issue #12467: warnings: fix a race condition if a warning isVictor Stinner2011-07-041-0/+12
|\ \ | |/
| * Issue #12467: warnings: fix a race condition if a warning is emitted atVictor Stinner2011-07-041-0/+12
* | (merge 3.2) Issue #12451: runpy: run_path() now opens the Python script inVictor Stinner2011-07-031-0/+10
|\ \ | |/
| * Issue #12451: runpy: run_path() now opens the Python script in binary mode,Victor Stinner2011-07-031-0/+10
* | merge 3.2Benjamin Peterson2011-07-031-0/+12
|\ \ | |/
| * never retain a generator's caller's exception state on the generator after a ...Benjamin Peterson2011-07-031-0/+12
* | merge 3.2 (#12475)Benjamin Peterson2011-07-031-0/+15
|\ \ | |/
| * merge headsBenjamin Peterson2011-07-032-1/+134
| |\
| * | restore a generator's caller's exception state both on yield and (last) returnBenjamin Peterson2011-07-031-0/+15
* | | Remove mention of medical condition from the test suite.Georg Brandl2011-07-031-4/+4
* | | merge #12147: make send_message correctly handle Sender and Resent- headers.R David Murray2011-07-031-1/+110
|\ \ \ | | |/ | |/|
| * | #12147: make send_message correctly handle Sender and Resent- headers.R David Murray2011-07-031-1/+110
* | | Issue #12456: fix a possible hang on shutdown of a concurrent.futures.Process...Antoine Pitrou2011-07-021-0/+7
* | | Closes #12291 for 3.3 - merged fix from 3.2.Vinay Sajip2011-07-021-0/+24
|\ \ \ | |/ /
| * | Closes #12291: Fixed bug which was found when doing multiple loads from one ...Vinay Sajip2011-07-021-0/+24
| |/
* | Clean up NEWS entry and tests for shutil.disk_usage (#12442)Éric Araujo2011-07-021-5/+5
* | Merge issue #12352: Fix a deadlock in multiprocessing.Heap when a block isCharles-François Natali2011-07-021-0/+24
|\ \ | |/
| * Merge issue #12352: Fix a deadlock in multiprocessing.Heap when a block isCharles-François Natali2011-07-021-0/+24
| |\
| | * Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed byCharles-François Natali2011-07-021-0/+24
* | | merge #11873: another try at fixing the regex, courtesy of Victor StinnerR David Murray2011-07-011-1/+1
|\ \ \ | |/ /
| * | #11873: another try at fixing the regex, courtesy of Victor StinnerR David Murray2011-07-011-1/+1
* | | merge #11873: fix test regex so it covers windows os.sep as well.R David Murray2011-07-011-1/+1
|\ \ \ | |/ /