summaryrefslogtreecommitdiff
path: root/Lib/test/test_concurrent_futures.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-26903: Limit ProcessPoolExecutor to 61 workers on Windows (GH-13132) (GH-...Miss Islington (bot)2019-05-281-0/+7
* bpo-33110: Catch errors raised when running add_done_callback on already comp...Miss Islington (bot)2019-05-221-0/+16
* [3.7] bpo-36492: Fix passing special keyword arguments to some functions. (GH...Serhiy Storchaka2019-04-011-0/+9
* bpo-33716, test_concurrent_futures: increase timeout (GH-7828)Miss Islington (bot)2018-07-121-5/+5
* bpo-33097: Fix submit accepting callable after executor shutdown by interpret...Miss Islington (bot)2018-04-101-0/+28
* [3.7] bpo-32746: Fix multiple typos (GH-5144) (GH-5520)Miss Islington (bot)2018-02-031-6/+6
* bpo-31699 Deadlocks in `concurrent.futures.ProcessPoolExecutor` with pickling...Thomas Moreau2018-01-051-2/+170
* Silence error output in test_concurrent_futures (bpo-21423) (#4347)Antoine Pitrou2017-11-091-22/+47
* bpo-21423: Add an initializer argument to {Process,Thread}PoolExecutor (#4241)Antoine Pitrou2017-11-041-65/+119
* bpo-31540: Allow passing multiprocessing context to ProcessPoolExecutor (#3682)Thomas Moreau2017-10-031-9/+120
* bpo-31641: Allow arbitrary iterables in `concurrent.futures.as_completed()` (...Łukasz Langa2017-09-291-1/+5
* bpo-31234: Join threads in tests (#3572)Victor Stinner2017-09-141-0/+3
* bpo-31249: Fix test_concurrent_futures dangling thread (#3521)Victor Stinner2017-09-121-0/+3
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-4/+0
* Fix a c.f.as_completed() refleak previously introduced in bpo-27144 (#3270)Antoine Pitrou2017-09-031-1/+1
* bpo-27144: concurrent.futures as_complete and map iterators do not keep refer...Grzegorz Grzywacz2017-09-011-0/+48
* bpo-31249: test_concurrent_futures checks dangling threads (#3167)Victor Stinner2017-08-211-12/+20
* bpo-30845: Enhance test_concurrent_futures cleanup (#2564)Victor Stinner2017-07-041-0/+7
* bpo-29212: Fix the ugly repr() ThreadPoolExecutor thread name. (#2315)Gregory P. Smith2017-06-211-4/+3
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Raymond Hettinger2016-08-301-1/+1
* Issue #27664: Add to concurrent.futures.thread.ThreadPoolExecutor()Gregory P. Smith2016-08-071-0/+24
* Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-2/+2
* Issue #9517: Move script_helper to the support package.Berker Peksag2015-05-061-1/+1
* Issue #21817: When an exception is raised in a task submitted to a ProcessPoo...Antoine Pitrou2015-01-171-0/+26
* Issue #11271: concurrent.futures.Executor.map() now takes a *chunksize*Antoine Pitrou2014-10-041-0/+16
* Closes #21527: Add default number of workers to ThreadPoolExecutor. (Claudiu ...Guido van Rossum2014-09-021-0/+6
* Eliminate DeprecationWarning in test_concurrent_futures.R David Murray2014-06-111-3/+3
* Issue #21362: concurrent.futures does not validate that max_workers is properBrian Quinlan2014-05-171-0/+7
* Fix issue #20367: concurrent.futures.as_completed() for duplicate arguments.Guido van Rossum2014-01-261-0/+7
* Issue #14407: Fix unittest test discovery in test_concurrent_futures.Antoine Pitrou2013-10-151-22/+13
|\
| * Issue #14407: Fix unittest test discovery in test_concurrent_futures.Antoine Pitrou2013-10-151-22/+13
* | Issue #16284: Prevent keeping unnecessary references to worker functions in c...Andrew Svetlov2012-11-031-0/+22
|/
* Issue #14406: Fix a race condition when using `concurrent.futures.wait(return...Antoine Pitrou2012-03-311-1/+17
|\
| * Issue #14406: Fix a race condition when using `concurrent.futures.wait(return...Antoine Pitrou2012-03-311-1/+17
* | 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-161-1/+2
* | Make sure to reap worker threads and processes at the end of test_concurrent_...Antoine Pitrou2011-07-151-9/+13
|\ \ | |/
| * Make sure to reap worker threads and processes at the end of test_concurrent_...Antoine Pitrou2011-07-151-9/+13
* | Issue #12456: fix a possible hang on shutdown of a concurrent.futures.Process...Antoine Pitrou2011-07-021-0/+7
* | Issue #9205: concurrent.futures.ProcessPoolExecutor now detects killedAntoine Pitrou2011-06-081-5/+15
* | 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-081-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
* Removes the 'Call' class which is used to control execution order and is unre...Brian Quinlan2011-01-031-400/+167
* 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
* Does not install a logging handler. Fixes issue 10626.Brian Quinlan2010-12-281-10/+3