summaryrefslogtreecommitdiffstats
path: root/Misc
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
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')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index ba32f6b..a8bb161 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -703,6 +703,7 @@ Ronan Lamy
Torsten Landschoff
Ɓukasz Langa
Tino Lange
+Glenn Langford
Andrew Langmead
Detlef Lannert
Soren Larsen
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.