summaryrefslogtreecommitdiffstats
path: root/Lib/concurrent/futures/thread.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.6] bpo-29212: Fix the ugly repr() ThreadPoolExecutor thread name. ↵Gregory P. Smith2017-09-031-1/+7
| | | | | | | | | | (GH-2315) (#3276) bpo-29212: Fix the ugly ThreadPoolExecutor thread name. Fixes the newly introduced ugly default thread name for concurrent.futures thread.ThreadPoolExecutor threads. They'll now resemble the old <=3.5 threading default Thread-x names by being named ThreadPoolExecutor-y_n.. (cherry picked from commit a3d91b43c2851312fb942f31afa12f5961706db6)
* bpo-31249: Fix ref cycle in ThreadPoolExecutor (#3253)Victor Stinner2017-09-011-2/+4
| | | [3.6] bpo-31249: Fix ref cycle in ThreadPoolExecutor
* 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
| | | | the ability to specify a thread name prefix.
* Closes #21527: Add default number of workers to ThreadPoolExecutor. (Claudiu ↵Guido van Rossum2014-09-021-1/+6
| | | | Popa.)
* 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 ↵Andrew Svetlov2012-11-031-0/+2
| | | | concurrent.futures ThreadPoolExecutor.
* 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
| | | | cannot raise queue.Empty).
* Issue #11635: Don't use polling in worker threads and processes launched byAntoine Pitrou2011-03-261-31/+29
| | | | concurrent.futures.
* Initial implementation of PEP 3148Brian Quinlan2010-09-181-0/+136