summaryrefslogtreecommitdiffstats
path: root/Lib/concurrent/futures/thread.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705)Serhiy Storchaka2019-05-061-0/+1
* bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637)Serhiy Storchaka2019-04-011-1/+16
* bpo-35133: Fix mistakes when concatenate string literals on different lines. ...Serhiy Storchaka2018-11-051-1/+1
* bpo-33097: Fix submit accepting callable after executor shutdown by interpret...Mark Nemec2018-04-101-0/+7
* bpo-32576: use queue.SimpleQueue in critical places (#5216)Antoine Pitrou2018-01-181-1/+1
* bpo-21423: Add an initializer argument to {Process,Thread}PoolExecutor (#4241)Antoine Pitrou2017-11-041-3/+48
* bpo-31249: Fix ref cycle in ThreadPoolExecutor (#3178)Victor Stinner2017-08-221-2/+4
* bpo-29212: Fix the ugly repr() ThreadPoolExecutor thread name. (#2315)Gregory P. Smith2017-06-221-1/+7
* 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-3/+8
* Closes #21527: Add default number of workers to ThreadPoolExecutor. (Claudiu ...Guido van Rossum2014-09-021-1/+6
* Issue #21362: concurrent.futures does not validate that max_workers is properBrian Quinlan2014-05-171-0/+3
* Issue #16284: Prevent keeping unnecessary references to worker functions in c...Andrew Svetlov2012-11-031-0/+2
* Remove unused or redundant imports in concurrent.futures and multiprocessing.Florent Xicluna2011-11-111-1/+1
* Issue #11815: Remove dead code in concurrent.futures (since a blocking QueueAntoine Pitrou2011-04-121-8/+4
* Issue #11635: Don't use polling in worker threads and processes launched byAntoine Pitrou2011-03-261-31/+29
* Initial implementation of PEP 3148Brian Quinlan2010-09-181-0/+136