summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRoss Lagerwall <rosslagerwall@gmail.com>2012-01-08 06:29:40 (GMT)
committerRoss Lagerwall <rosslagerwall@gmail.com>2012-01-08 06:29:40 (GMT)
commit66e2fb68aca2a2678a327b200e657b761f358bc1 (patch)
treef5037c0da90ca27dd2977d30fb8fb29ae8394431 /Misc
parent645a0dd6f79004652c52ae9d7246d1b219772588 (diff)
downloadcpython-66e2fb68aca2a2678a327b200e657b761f358bc1.zip
cpython-66e2fb68aca2a2678a327b200e657b761f358bc1.tar.gz
cpython-66e2fb68aca2a2678a327b200e657b761f358bc1.tar.bz2
Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor.
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 9212f9e..8e95abb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -97,6 +97,10 @@ Core and Builtins
Library
-------
+- Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor.
+ The hang would occur when retrieving the result of a scheduled future after
+ the executor had been shut down.
+
- Issue #13502: threading: Fix a race condition in Event.wait() that made it
return False when the event was set and cleared right after.