summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_concurrent_futures.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #14406: Fix a race condition when using ↵Antoine Pitrou2012-03-311-1/+17
|\ | | | | | | | | | | `concurrent.futures.wait(return_when=ALL_COMPLETED)`. Patch by Matt Joiner.
| * Issue #14406: Fix a race condition when using ↵Antoine Pitrou2012-03-311-1/+17
| | | | | | | | | | | | `concurrent.futures.wait(return_when=ALL_COMPLETED)`. Patch by Matt Joiner.
* | Merge with 3.2 for #12364.Ross Lagerwall2012-01-081-0/+6
|\ \ | |/
| * Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor.Ross Lagerwall2012-01-081-0/+6
| |
* | PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.Antoine Pitrou2011-10-121-7/+7
| |
* | Fix potential resource leaks in concurrent.futures.ProcessPoolExecutorAntoine Pitrou2011-07-151-1/+2
| | | | | | | | by joining all queues and processes when shutdown() is called.
* | Make sure to reap worker threads and processes at the end of ↵Antoine Pitrou2011-07-151-9/+13
|\ \ | |/ | | | | test_concurrent_futures
| * Make sure to reap worker threads and processes at the end of ↵Antoine Pitrou2011-07-151-9/+13
| | | | | | | | test_concurrent_futures
* | Issue #12456: fix a possible hang on shutdown of a ↵Antoine Pitrou2011-07-021-0/+7
| | | | | | | | concurrent.futures.ProcessPoolExecutor.
* | Issue #9205: concurrent.futures.ProcessPoolExecutor now detects killedAntoine Pitrou2011-06-081-5/+15
| | | | | | | | | | children and raises BrokenProcessPool in such a situation. Previously it would reliably freeze/deadlock.
* | Increases some test timeouts to fix issue 11864.Brian Quinlan2011-05-301-4/+4
| |
* | Issue #11777: Executor.map does not submit futures until iter.next() is calledBrian Quinlan2011-04-071-1/+9
|/
* Add tests for the atexit hook in concurrent.futures (part of #11635)Antoine Pitrou2011-03-241-15/+40
|
* Use shorter timings in test_concurrent_futures to make it a bit fasterAntoine Pitrou2011-03-221-9/+9
| | | | (it's still very slow)
* Removes the 'Call' class which is used to control execution order and is ↵Brian Quinlan2011-01-031-400/+167
| | | | unreliable on Windows
* Skip hanging test.Martin v. Löwis2011-01-031-0/+1
|
* Issue #10798: Reject supporting concurrent.futures if the system hasMartin v. Löwis2011-01-031-72/+58
| | | | too few POSIX semaphores.
* Does not install a logging handler. Fixes issue 10626.Brian Quinlan2010-12-281-10/+3
|
* Assign closed handles to None to make errors more obvious if they are used.Brian Quinlan2010-12-251-2/+2
|
* Better reporting of test failures on Windows.Brian Quinlan2010-12-241-3/+15
|
* #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and ↵Ezio Melotti2010-12-011-10/+10
| | | | assertRaisesRegex.
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-43/+43
|
* Fixes a timing-related failure on Windows (issue 10183)Brian Quinlan2010-11-201-3/+3
|
* test_concurrent_futures: remove temporary hackVictor Stinner2010-11-071-4/+0
|
* test_concurrent_futures: dump ulimit -a to check a failure on x86 FreeBSD ↵Victor Stinner2010-11-061-0/+4
| | | | 7.2 3.x, buildbot
* Fixes 9903: test_concurrent_futures writes on stderrBrian Quinlan2010-10-061-19/+31
|
* Initial implementation of PEP 3148Brian Quinlan2010-09-181-0/+817