summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrian Quinlan <brian@sweetapp.com>2014-02-01 00:49:04 (GMT)
committerBrian Quinlan <brian@sweetapp.com>2014-02-01 00:49:04 (GMT)
commit2b754f49a57c4f625b73e703456bd5ff04496416 (patch)
treec8ce61f78835316de57e2439318a0f2679ab6d6a /Misc
parent0ba5f0d3866a2bfa42cba3d809fc1c5d90faaf10 (diff)
downloadcpython-2b754f49a57c4f625b73e703456bd5ff04496416.zip
cpython-2b754f49a57c4f625b73e703456bd5ff04496416.tar.gz
cpython-2b754f49a57c4f625b73e703456bd5ff04496416.tar.bz2
Issue #20319: concurrent.futures.wait() can block forever even if Futures have completed
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d4fb721..a62f748 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -69,6 +69,12 @@ Library
- Issue #17481: inspect.getfullargspec() now uses inspect.signature() API.
+- Issue #15304: concurrent.futures.wait() can block forever even if
+ Futures have completed. Patch by Glenn Langford.
+
+Fix warning message when `os.chdir()` fails inside
+ `test.support.temp_cwd()`. Patch by Chris Jerdonek.
+
IDLE
----