summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRoss Lagerwall <rosslagerwall@gmail.com>2012-01-08 06:42:03 (GMT)
committerRoss Lagerwall <rosslagerwall@gmail.com>2012-01-08 06:42:03 (GMT)
commit69f39a53f62734d3e8dcb4bdcc217c4b3551d393 (patch)
tree1baf6ceb8e888f0acd7a4c717f32bda2ecfab39f /Misc
parent75404274344794012da83362f32b6e1786ef04df (diff)
parent66e2fb68aca2a2678a327b200e657b761f358bc1 (diff)
downloadcpython-69f39a53f62734d3e8dcb4bdcc217c4b3551d393.zip
cpython-69f39a53f62734d3e8dcb4bdcc217c4b3551d393.tar.gz
cpython-69f39a53f62734d3e8dcb4bdcc217c4b3551d393.tar.bz2
Merge with 3.2 for #12364.
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 05664f6..fbc6f67 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -422,6 +422,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.