diff options
author | Xiang Zhang <angwerzx@126.com> | 2017-03-29 04:51:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-29 04:51:29 (GMT) |
commit | 9f8e0904580cae3b99f8d343569b76e1be7e6092 (patch) | |
tree | c42ce20f7347114d47b1bfe146b50a9086bc1601 /Misc/NEWS | |
parent | 0957f262c5e47167efd520624557aebdc61bfda8 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |