summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2014-01-26 17:57:51 (GMT)
committerGuido van Rossum <guido@python.org>2014-01-26 17:57:51 (GMT)
commite6994ff6e341d049ca974d88f14ad608f5cf7a64 (patch)
treefdf31e84a04b142f35c0d16fd1e36343a3e4119e /Misc/NEWS
parent252fd0c24b15e38c80053a9569272654fd12868a (diff)
downloadcpython-e6994ff6e341d049ca974d88f14ad608f5cf7a64.zip
cpython-e6994ff6e341d049ca974d88f14ad608f5cf7a64.tar.gz
cpython-e6994ff6e341d049ca974d88f14ad608f5cf7a64.tar.bz2
Fix issue #20367: concurrent.futures.as_completed() for duplicate arguments.
Patch by Glenn Langford.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9c0ed5a..7fb39c0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,9 @@ Core and Builtins
Library
-------
+- Issue #20367: Fix behavior of concurrent.futures.as_completed() for
+ duplicate arguments. Patch by Glenn Langford.
+
- Issue #8260: The read(), readline() and readlines() methods of
codecs.StreamReader returned incomplete data when were called after
readline() or read(size). Based on patch by Amaury Forgeot d'Arc.