summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-01-27 08:11:48 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-01-27 08:11:48 (GMT)
commitb9915973f3522d3feaa862aaacd4d7d269f6fc72 (patch)
treee30a6634ad08bd39d80f606075d763b029b6b40b /Misc/NEWS
parentd1c85fd2835bafa0fde0b95b82b6e0fffd60649a (diff)
downloadcpython-b9915973f3522d3feaa862aaacd4d7d269f6fc72.zip
cpython-b9915973f3522d3feaa862aaacd4d7d269f6fc72.tar.gz
cpython-b9915973f3522d3feaa862aaacd4d7d269f6fc72.tar.bz2
Issue #20367: Fix behavior of 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 e8d1a7a..7062211 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,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.