diff options
author | Jesse Noller <jnoller@gmail.com> | 2010-01-27 03:05:57 (GMT) |
---|---|---|
committer | Jesse Noller <jnoller@gmail.com> | 2010-01-27 03:05:57 (GMT) |
commit | 654ade3e6afa2527d1f642be28d69e219bd58b71 (patch) | |
tree | 9f540e75bef18a74b76fa72eb7f4b04250ebd417 /Misc | |
parent | 2deb5c758adc4a9a55dae93ecaad5af43c344591 (diff) | |
download | cpython-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/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -121,6 +121,7 @@ Brett Cannon Mike Carlton Terry Carroll Donn Cave +Charles Cazabon Per Cederqvist Octavian Cerna Hye-Shik Chang @@ -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. |