summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-04-10 22:26:42 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-04-10 22:26:42 (GMT)
commit7dfc874a48516e58e830b3a455fca34c8cd834eb (patch)
tree4fe0af4be99d43bbe9ae2192ba64605c9ede5b39 /Misc
parent04cb72f96884998beac97ef3a81dca3332e44917 (diff)
downloadcpython-7dfc874a48516e58e830b3a455fca34c8cd834eb.zip
cpython-7dfc874a48516e58e830b3a455fca34c8cd834eb.tar.gz
cpython-7dfc874a48516e58e830b3a455fca34c8cd834eb.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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ee75bda..5eb38da 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -51,6 +51,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 HTMLParser to accept non-ASCII attribute values.
- Issue #10963: Ensure that subprocess.communicate() never raises EPIPE.