]> granicus.if.org Git - python/commitdiff
Add NEWS entry I forgot to commit.
authorAntoine Pitrou <solipsis@pitrou.net>
Sat, 4 Oct 2014 20:16:14 +0000 (22:16 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Sat, 4 Oct 2014 20:16:14 +0000 (22:16 +0200)
Misc/NEWS

index 7c377a0682db5170296c9e61e8a160f40b51e0a3..9e7efb9dfee60e6a1045f9b9fdbbc8c10d2f6def 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -162,6 +162,10 @@ Core and Builtins
 Library
 -------
 
+- 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.
+
 - Issue #21883: os.path.join() and os.path.relpath() now raise a TypeError with
   more helpful error message for unsupported or mismatched types of arguments.