diff options
author | Guido van Rossum <guido@python.org> | 2014-01-26 17:57:51 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2014-01-26 17:57:51 (GMT) |
commit | e6994ff6e341d049ca974d88f14ad608f5cf7a64 (patch) | |
tree | fdf31e84a04b142f35c0d16fd1e36343a3e4119e /Misc/NEWS | |
parent | 252fd0c24b15e38c80053a9569272654fd12868a (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |