summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-03-29 04:51:29 (GMT)
committerGitHub <noreply@github.com>2017-03-29 04:51:29 (GMT)
commit9f8e0904580cae3b99f8d343569b76e1be7e6092 (patch)
treec42ce20f7347114d47b1bfe146b50a9086bc1601 /Misc/NEWS
parent0957f262c5e47167efd520624557aebdc61bfda8 (diff)
downloadcpython-9f8e0904580cae3b99f8d343569b76e1be7e6092.zip
cpython-9f8e0904580cae3b99f8d343569b76e1be7e6092.tar.gz
cpython-9f8e0904580cae3b99f8d343569b76e1be7e6092.tar.bz2
bpo-28699: fix abnormal behaviour of pools in multiprocessing.pool (GH-884)
an exception raised at the very first of an iterable would cause pools behave abnormally (swallow the exception or hang)
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 1b0c1c0..9a22010 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,10 @@ Extension Modules
Library
-------
+- bpo-28699: Fixed a bug in pools in multiprocessing.pool that raising an
+ exception at the very first of an iterable may swallow the exception or
+ make the program hang. Patch by Davin Potts and Xiang Zhang.
+
- bpo-25803: Avoid incorrect errors raised by Path.mkdir(exist_ok=True)
when the OS gives priority to errors such as EACCES over EEXIST.