summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-13 06:25:26 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-13 06:25:26 (GMT)
commit79fbeee2378dc31a5edebc9a5aa8f3fe9726933e (patch)
treec6e548a0204d89160067d496de135893cbfbf06b /Misc/NEWS
parentf0f14f72bb8aba4955749c7993f72083c2680fbe (diff)
downloadcpython-79fbeee2378dc31a5edebc9a5aa8f3fe9726933e.zip
cpython-79fbeee2378dc31a5edebc9a5aa8f3fe9726933e.tar.gz
cpython-79fbeee2378dc31a5edebc9a5aa8f3fe9726933e.tar.bz2
Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now
handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 282492c..793cc10 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,10 @@ Core and Builtins
Library
-------
+- Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now
+ handle exceptions raised by an iterator. Patch by Alon Diamant and Davin
+ Potts.
+
- Issue #22928: Disabled HTTP header injections in http.client.
Original patch by Demian Brecht.