diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-13 06:25:26 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-13 06:25:26 (GMT) |
commit | 79fbeee2378dc31a5edebc9a5aa8f3fe9726933e (patch) | |
tree | c6e548a0204d89160067d496de135893cbfbf06b /Misc | |
parent | f0f14f72bb8aba4955749c7993f72083c2680fbe (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/ACKS | 2 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -332,6 +332,7 @@ Raghuram Devarakonda Caleb Deveraux Catherine Devlin Scott Dial +Alon Diamant Toby Dickenson Mark Dickinson Jack Diederich @@ -1081,6 +1082,7 @@ Martin Pool Iustin Pop Claudiu Popa John Popplewell +Davin Potts Guillaume Pratte Amrit Prem Paul Prescod @@ -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. |