aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/concurrent/futures/thread.py
Commit message (Expand)AuthorAge
* gh-88110: Clear concurrent.futures.thread._threads_queues after fork to avoid...Andrei Bodrov2024-11-22
* gh-124694: Add concurrent.futures.InterpreterPoolExecutor (gh-124548)Eric Snow2024-10-16
* gh-109649: Use os.process_cpu_count() (#110165)Victor Stinner2023-10-01
* gh-102024: Reduced _idle_semaphore.release calls (#102025)Andrii Kuzmin2023-05-25
* bpo-45021: Fix a hang in forked children (GH-28007)nullptr2021-09-20
* bpo-40443: Remove unused imports in the stdlib (GH-19803)Victor Stinner2020-04-30
* bpo-39481: PEP 585 for a variety of modules (GH-19423)Batuhan Taşkaya2020-04-10
* bpo-39812: Remove daemon threads in concurrent.futures (GH-19149)Kyle Stanley2020-03-27
* bpo-39349: Add *cancel_futures* to Executor.shutdown() (GH-18057)Kyle Stanley2020-02-02
* bpo-31783: Fix a race condition creating workers during shutdown (#13171)Brian Quinlan2019-06-28
* Fix typo in Lib/concurrent/futures/thread.py (GH-13953)ubordignon2019-06-15
* [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-36542: Allow to overwrite the signature for Python functions. (GH-12705)Serhiy Storchaka2019-05-06
* bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637)Serhiy Storchaka2019-04-01
* bpo-35133: Fix mistakes when concatenate string literals on different lines. ...Serhiy Storchaka2018-11-05
* bpo-33097: Fix submit accepting callable after executor shutdown by interpret...Mark Nemec2018-04-10
* bpo-32576: use queue.SimpleQueue in critical places (#5216)Antoine Pitrou2018-01-18
* bpo-21423: Add an initializer argument to {Process,Thread}PoolExecutor (#4241)Antoine Pitrou2017-11-04
* bpo-31249: Fix ref cycle in ThreadPoolExecutor (#3178)Victor Stinner2017-08-22
* bpo-29212: Fix the ugly repr() ThreadPoolExecutor thread name. (#2315)Gregory P. Smith2017-06-21
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Raymond Hettinger2016-08-30
* Issue #27664: Add to concurrent.futures.thread.ThreadPoolExecutor()Gregory P. Smith2016-08-07
* Closes #21527: Add default number of workers to ThreadPoolExecutor. (Claudiu ...Guido van Rossum2014-09-02
* Issue #21362: concurrent.futures does not validate that max_workers is properBrian Quinlan2014-05-17
* Issue #16284: Prevent keeping unnecessary references to worker functions in c...Andrew Svetlov2012-11-03
* Remove unused or redundant imports in concurrent.futures and multiprocessing.Florent Xicluna2011-11-11
* Issue #11815: Remove dead code in concurrent.futures (since a blocking QueueAntoine Pitrou2011-04-12
* Issue #11635: Don't use polling in worker threads and processes launched byAntoine Pitrou2011-03-26
* Initial implementation of PEP 3148Brian Quinlan2010-09-18