From: Serhiy Storchaka Date: Fri, 13 Mar 2015 06:30:33 +0000 (+0200) Subject: Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now X-Git-Tag: v3.5.0a3~187 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63623ac2529ce9f293784c06215b018664c74491;p=python Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts. --- 63623ac2529ce9f293784c06215b018664c74491 diff --cc Misc/NEWS index 64d77aa59b,793cc10741..78fca4dd24 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -18,12 -18,10 +18,16 @@@ Core and Builtin 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 #23581: Add matmul support to MagicMock. Patch by Håkan Lövdahl. + +- Issue #23566: enable(), register(), dump_traceback() and + dump_traceback_later() functions of faulthandler now accept file + descriptors. Patch by Wei Wu. + - Issue #22928: Disabled HTTP header injections in http.client. Original patch by Demian Brecht.