]> granicus.if.org Git - python/commit
bpo-28699: fix abnormal behaviour of pools in multiprocessing.pool (GH-884)
authorXiang Zhang <angwerzx@126.com>
Wed, 29 Mar 2017 04:51:29 +0000 (12:51 +0800)
committerGitHub <noreply@github.com>
Wed, 29 Mar 2017 04:51:29 +0000 (12:51 +0800)
commit9f8e0904580cae3b99f8d343569b76e1be7e6092
treec42ce20f7347114d47b1bfe146b50a9086bc1601
parent0957f262c5e47167efd520624557aebdc61bfda8
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)
Lib/multiprocessing/pool.py
Lib/test/_test_multiprocessing.py
Misc/NEWS