diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-04-10 22:18:59 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-04-10 22:18:59 (GMT) |
commit | 81dee6b4d4acc061e568e10f976eb77b084ddd26 (patch) | |
tree | 12c351bd842def366f23a327ef6589409f3f05f1 /Misc | |
parent | 810b94a36416cecf38205fd48e6a0a9eb3d2998c (diff) | |
download | cpython-81dee6b4d4acc061e568e10f976eb77b084ddd26.zip cpython-81dee6b4d4acc061e568e10f976eb77b084ddd26.tar.gz cpython-81dee6b4d4acc061e568e10f976eb77b084ddd26.tar.bz2 |
Issue #8428: Fix a race condition in multiprocessing.Pool when terminating
worker processes: new processes would be spawned while the pool is being
shut down. Patch by Charles-François Natali.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -53,6 +53,10 @@ Core and Builtins Library ------- +- Issue #8428: Fix a race condition in multiprocessing.Pool when terminating + worker processes: new processes would be spawned while the pool is being + shut down. Patch by Charles-François Natali. + - Issue #7311: fix html.parser to accept non-ASCII attribute values. - Issue #11605: email.parser.BytesFeedParser was incorrectly converting multipart |