| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-35930: Raising an exception raised in a "future" instance will create ref... | Jesús Cea | 2021-03-29 | 1 | -15/+23 |
|
|
* | bpo-40692: Run more test_concurrent_futures tests (GH-20239) | Asheesh Laroia | 2021-02-08 | 1 | -0/+8 |
|
|
* | bpo-39349: Add cancel_futures to Executor.shutdown base class (GH-22023) | Shantanu | 2020-09-01 | 1 | -1/+4 |
|
|
* | bpo-40443: Remove unused imports in the stdlib (GH-19803) | Victor Stinner | 2020-04-30 | 2 | -2/+0 |
|
|
* | bpo-39995: Fix concurrent.futures _ThreadWakeup (GH-19760) | Victor Stinner | 2020-04-29 | 1 | -14/+27 |
|
|
* | bpo-30966: concurrent.futures.Process.shutdown() closes queue (GH-19738) | Victor Stinner | 2020-04-27 | 1 | -0/+2 |
|
|
* | bpo-39207: Spawn workers on demand in ProcessPoolExecutor (GH-19453) | Kyle Stanley | 2020-04-19 | 1 | -2/+14 |
|
|
* | bpo-39481: PEP 585 for a variety of modules (GH-19423) | Batuhan Taşkaya | 2020-04-10 | 2 | -0/+6 |
|
|
* | bpo-39812: Remove daemon threads in concurrent.futures (GH-19149) | Kyle Stanley | 2020-03-27 | 2 | -32/+11 |
|
|
* | bpo-39678: refactor queue manager thread (GH-18551) | Thomas Moreau | 2020-03-01 | 1 | -207/+229 |
|
|
* | bpo-39104: Fix hanging ProcessPoolExecutor on shutdown nowait with pickling f... | Thomas Moreau | 2020-02-16 | 1 | -21/+26 |
|
|
* | bpo-39349: Add *cancel_futures* to Executor.shutdown() (GH-18057) | Kyle Stanley | 2020-02-02 | 2 | -2/+36 |
|
|
* | bpo-31783: Fix a race condition creating workers during shutdown (#13171) | Brian Quinlan | 2019-06-28 | 1 | -2/+6 |
|
|
* | Fix typo in Lib/concurrent/futures/thread.py (GH-13953) | ubordignon | 2019-06-15 | 2 | -2/+2 |
|
|
* | [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620) | Serhiy Storchaka | 2019-06-05 | 3 | -49/+3 |
|
|
* | bpo-35279: reduce default max_workers of ThreadPoolExecutor (GH-13618) | Inada Naoki | 2019-05-28 | 1 | -3/+8 |
|
|
* | bpo-24882: Let ThreadPoolExecutor reuse idle threads before creating new thre... | Sean | 2019-05-22 | 1 | -2/+13 |
|
|
* | bpo-33110: Catch errors raised when running add_done_callback on already comp... | Sam Martin | 2019-05-22 | 1 | -1/+4 |
|
|
* | bpo-26903: Limit ProcessPoolExecutor to 61 workers on Windows (GH-13132) | Brian Quinlan | 2019-05-08 | 1 | -0/+14 |
|
|
* | Don't import wait from connection, it shadows a name (GH-13112) | Brian Quinlan | 2019-05-07 | 1 | -2/+2 |
|
|
* | bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705) | Serhiy Storchaka | 2019-05-06 | 3 | -0/+3 |
|
|
* | Correct grammar in concurrent/futures/process.py docstring (GH-12761) | Thomas Grainger | 2019-04-12 | 1 | -1/+1 |
|
|
* | bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637) | Serhiy Storchaka | 2019-04-01 | 3 | -3/+46 |
|
|
* | bpo-35715: Liberate return value of _process_worker (GH-11514) | Dave Chevell | 2019-03-16 | 1 | -0/+1 |
|
|
* | bpo-35133: Fix mistakes when concatenate string literals on different lines. ... | Serhiy Storchaka | 2018-11-05 | 1 | -1/+1 |
|
|
* | bpo-34819: Use a monotonic clock to compute timeouts in concurrent.futures (G... | orlnub123 | 2018-09-27 | 1 | -4/+4 |
|
|
* | bpo-33238: Add InvalidStateError to concurrent.futures. (GH-7056) | jhaydaman | 2018-05-30 | 2 | -0/+9 |
|
|
* | bpo-33097: Fix submit accepting callable after executor shutdown by interpret... | Mark Nemec | 2018-04-10 | 2 | -0/+14 |
|
|
* | bpo-33056 FIX leaking fd in concurrent.futures.ProcessPoolExecutor (#6084) | Thomas Moreau | 2018-03-12 | 1 | -2/+9 |
|
|
* | bpo-32596: Make lazy-load portable (GH-5316) | INADA Naoki | 2018-01-26 | 1 | -4/+6 |
|
|
* | bpo-32596: Lazy import concurrent.futures.process and thread (GH-5241) | INADA Naoki | 2018-01-20 | 1 | -2/+33 |
|
|
* | bpo-32576: use queue.SimpleQueue in critical places (#5216) | Antoine Pitrou | 2018-01-18 | 1 | -1/+1 |
|
|
* | bpo-31699 Deadlocks in `concurrent.futures.ProcessPoolExecutor` with pickling... | Thomas Moreau | 2018-01-05 | 1 | -49/+159 |
|
|
* | bpo-21423: Add an initializer argument to {Process,Thread}PoolExecutor (#4241) | Antoine Pitrou | 2017-11-04 | 4 | -10/+84 |
|
|
* | bpo-31540: Allow passing multiprocessing context to ProcessPoolExecutor (#3682) | Thomas Moreau | 2017-10-03 | 1 | -29/+37 |
|
|
* | bpo-31641: Allow arbitrary iterables in `concurrent.futures.as_completed()` (... | Łukasz Langa | 2017-09-29 | 1 | -2/+1 |
|
|
* | Fix a c.f.as_completed() refleak previously introduced in bpo-27144 (#3270) | Antoine Pitrou | 2017-09-03 | 1 | -7/+19 |
|
|
* | bpo-31326: ProcessPoolExecutor waits for the call queue thread (#3265) | Victor Stinner | 2017-09-01 | 1 | -1/+5 |
|
|
* | bpo-27144: concurrent.futures as_complete and map iterators do not keep refer... | Grzegorz Grzywacz | 2017-09-01 | 2 | -10/+41 |
|
|
* | bpo-31249: Fix ref cycle in ThreadPoolExecutor (#3178) | Victor Stinner | 2017-08-22 | 1 | -2/+4 |
|
|
* | bpo-29212: Fix the ugly repr() ThreadPoolExecutor thread name. (#2315) | Gregory P. Smith | 2017-06-22 | 1 | -1/+7 |
|
|
* | Issue #27895: Spelling fixes (Contributed by Ville Skyttä). | Raymond Hettinger | 2016-08-30 | 2 | -2/+2 |
|
|
* | Issue #27664: Add to concurrent.futures.thread.ThreadPoolExecutor() | Gregory P. Smith | 2016-08-07 | 1 | -3/+8 |
|
|
* | Issue #25523: Further a-to-an corrections new in 3.5 | Martin Panter | 2015-11-02 | 1 | -1/+1 |
|
|
* | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 | Martin Panter | 2015-11-02 | 1 | -1/+1 |
|\ |
|
| * | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 1 | -1/+1 |
|
|
* | | Issue #21817: When an exception is raised in a task submitted to a ProcessPoo... | Antoine Pitrou | 2015-01-17 | 1 | -2/+24 |
|
|
* | | Issue #11271: concurrent.futures.Executor.map() now takes a *chunksize* | Antoine Pitrou | 2014-10-04 | 2 | -1/+56 |
|
|
* | | Closes #21527: Add default number of workers to ThreadPoolExecutor. (Claudiu ... | Guido van Rossum | 2014-09-02 | 1 | -1/+6 |
|
|
* | | Issue #22033: Reprs of most Python implemened classes now contain actual | Serhiy Storchaka | 2014-07-25 | 1 | -6/+9 |
|
|