summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-03-31 18:23:30 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-03-31 18:23:30 (GMT)
commitf70401e842d120407c5450d0b89cece8616af8e4 (patch)
tree28d58598132a50abf42600af358a764de5246568 /Misc
parent317075de2981c9283e7af7bcf727ef8ae8ee4f4e (diff)
downloadcpython-f70401e842d120407c5450d0b89cece8616af8e4.zip
cpython-f70401e842d120407c5450d0b89cece8616af8e4.tar.gz
cpython-f70401e842d120407c5450d0b89cece8616af8e4.tar.bz2
Issue #14406: Fix a race condition when using `concurrent.futures.wait(return_when=ALL_COMPLETED)`.
Patch by Matt Joiner.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d084fac..d814b17 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,9 @@ Core and Builtins
Library
-------
+- Issue #14406: Fix a race condition when using ``concurrent.futures.wait(
+ return_when=ALL_COMPLETED)``. Patch by Matt Joiner.
+
- Issue #14409: IDLE now properly executes commands in the Shell window
when it cannot read the normal config files on startup and
has to use the built-in default key bindings.