]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Issue #11271: concurrent.futures.Executor.map() now takes a *chunksize*
authorAntoine Pitrou <solipsis@pitrou.net>
Sat, 4 Oct 2014 18:20:10 +0000 (20:20 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Sat, 4 Oct 2014 18:20:10 +0000 (20:20 +0200)
commit4aae276eca9a9213ad45158d30ae2f15843dd463
treee3ec365b19f7eb88212595c3ea47f3362bfe75e3
parente4f47088af0040d73449d0cb0fe1e6d863f3ad07
Issue #11271: concurrent.futures.Executor.map() now takes a *chunksize*
argument to allow batching of tasks in child processes and improve
performance of ProcessPoolExecutor.  Patch by Dan O'Reilly.
Doc/library/concurrent.futures.rst
Lib/concurrent/futures/_base.py
Lib/concurrent/futures/process.py
Lib/test/test_concurrent_futures.py