aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_concurrent_futures.py
Commit message (Expand)AuthorAge
* gh-108388: Convert test_concurrent_futures to package (#108401)Victor Stinner2023-08-24
* gh-90791: Enable test___all__ on ASAN build (#108286)Victor Stinner2023-08-22
* gh-94777: Fix deadlock in ProcessPoolExecutor (#94784)Louis Paulot2023-07-10
* gh-94440: Fix issue of ProcessPoolExecutor shutdown hanging (#94468)yonatanp2023-03-15
* gh-84559: Remove the new multiprocessing warning, too disruptive. (#101551)Gregory P. Smith2023-02-03
* GH-84559: Deprecate fork being the multiprocessing default. (#100618)Gregory P. Smith2023-02-02
* gh-100522 Add a test for 'futures.as_completed' timing out with a non-zero ti...JosephSBoyle2023-01-25
* gh-95166: cancel map waited on future on timeout (GH-95169)Thomas Grainger2022-07-28
* test_concurrent_futures: Fix unneeded/confusing format call (#93119)Florian Bruhin2022-07-18
* Tests call sleeping_retry() with SHORT_TIMEOUT (#93870)Victor Stinner2022-06-15
* Add test.support.busy_retry() (#93770)Victor Stinner2022-06-15
* gh-90622: Do not spawn ProcessPool workers on demand via fork method. (#91598)Gregory P. Smith2022-05-08
* gh-90622: Prevent max_tasks_per_child use with a fork mp_context. (#91587)Gregory P. Smith2022-05-06
* gh-91607: Fix several test_concurrent_futures tests to actually test what the...Gregory P. Smith2022-04-16
* bpo-46633: Skip tests on ASAN and/or MSAN builds (GH-31632)Victor Stinner2022-03-01
* bpo-20369: concurrent.futures.wait() now deduplicates futures given a… (GH-...Kumar Aditya2022-01-04
* bpo-44733: Add max_tasks_per_child to ProcessPoolExecutor (GH-27373)Logan Jones2021-11-20
* bpo-45021: Fix a hang in forked children (GH-28007)nullptr2021-09-20
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-19
* bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)Serhiy Storchaka2021-08-29
* bpo-40692: Run more test_concurrent_futures tests (GH-20239)Asheesh Laroia2021-02-08
* bpo-40275: Use new test.support helper submodules in tests (GH-21449)Hai Shi2020-08-03
* bpo-38377: Add support.skip_if_broken_multiprocessing_synchronize() (GH-20944)Victor Stinner2020-06-18
* bpo-17258: Add requires_hashdigest to multiprocessing tests (GH-20412)Christian Heimes2020-06-04
* bpo-40275: Adding threading_helper submodule in test.support (GH-20263)Hai Shi2020-05-28
* bpo-39995: Split test_concurrent_futures.test_crash() into sub-tests (GH-19739)Victor Stinner2020-04-27
* bpo-39207: Spawn workers on demand in ProcessPoolExecutor (GH-19453)Kyle Stanley2020-04-19
* bpo-39678: refactor queue manager thread (GH-18551)Thomas Moreau2020-03-01
* bpo-39104: Fix hanging ProcessPoolExecutor on shutdown nowait with pickling f...Thomas Moreau2020-02-16
* bpo-39349: Add *cancel_futures* to Executor.shutdown() (GH-18057)Kyle Stanley2020-02-02
* bpo-39205: Tests that highlight a hang on ProcessPoolExecutor shutdown (#18221)Brian Quinlan2020-01-27
* bpo-38546: Fix concurrent.futures test_ressources_gced_in_workers() (GH-17652)Victor Stinner2019-12-18
* bpo-38546: multiprocessing tests stop the resource tracker (GH-17641)Victor Stinner2019-12-17
* bpo-38614: Use test.support.SHORT_TIMEOUT constant (GH-17566)Victor Stinner2019-12-11
* bpo-37421: test_concurrent_futures stops ForkServer (GH-14643)Victor Stinner2019-07-08
* bpo-37421: test_concurrent_futures cleans up multiprocessing (GH-14563)Victor Stinner2019-07-03
* [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620)Serhiy Storchaka2019-06-05
* bpo-35279: reduce default max_workers of ThreadPoolExecutor (GH-13618)Inada Naoki2019-05-28
* bpo-24882: Let ThreadPoolExecutor reuse idle threads before creating new thre...Sean2019-05-22
* bpo-33110: Catch errors raised when running add_done_callback on already comp...Sam Martin2019-05-22
* bpo-26903: Limit ProcessPoolExecutor to 61 workers on Windows (GH-13132)Brian Quinlan2019-05-08
* bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637)Serhiy Storchaka2019-04-01
* bpo-33716, test_concurrent_futures: increase timeout (GH-7828)Pablo Galindo2018-06-21
* bpo-33238: Add InvalidStateError to concurrent.futures. (GH-7056)jhaydaman2018-05-30
* bpo-33097: Fix submit accepting callable after executor shutdown by interpret...Mark Nemec2018-04-10
* bpo-32746: Fix multiple typos (GH-5144)Leo Arias2018-02-03
* bpo-31699 Deadlocks in `concurrent.futures.ProcessPoolExecutor` with pickling...Thomas Moreau2018-01-05
* Silence error output in test_concurrent_futures (bpo-21423) (#4347)Antoine Pitrou2017-11-09
* bpo-21423: Add an initializer argument to {Process,Thread}PoolExecutor (#4241)Antoine Pitrou2017-11-04
* bpo-31540: Allow passing multiprocessing context to ProcessPoolExecutor (#3682)Thomas Moreau2017-10-03