summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2010-01-27 03:05:57 (GMT)
committerJesse Noller <jnoller@gmail.com>2010-01-27 03:05:57 (GMT)
commit654ade3e6afa2527d1f642be28d69e219bd58b71 (patch)
tree9f540e75bef18a74b76fa72eb7f4b04250ebd417 /Misc
parent2deb5c758adc4a9a55dae93ecaad5af43c344591 (diff)
downloadcpython-654ade3e6afa2527d1f642be28d69e219bd58b71.zip
cpython-654ade3e6afa2527d1f642be28d69e219bd58b71.tar.gz
cpython-654ade3e6afa2527d1f642be28d69e219bd58b71.tar.bz2
Issue #6963: Added maxtasksperchild argument to multiprocessing.Pool
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 7c98382..877c326 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -121,6 +121,7 @@ Brett Cannon
Mike Carlton
Terry Carroll
Donn Cave
+Charles Cazabon
Per Cederqvist
Octavian Cerna
Hye-Shik Chang
diff --git a/Misc/NEWS b/Misc/NEWS
index ac1295a..e560204 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -173,6 +173,11 @@ Core and Builtins
Library
-------
+- Issue #6963: Added "maxtasksperchild" argument to multiprocessing.Pool,
+ allowing for a maximum number of tasks within the pool to be completed by
+ the worker before that worker is terminated, and a new one created to
+ replace it.
+
- Issue #7617: Make sure distutils.unixccompiler.UnixCCompiler recognizes
gcc when it has a fully qualified configuration prefix. Initial patch
by Arfrever.