]> granicus.if.org Git - python/commit
bpo-28699: fix abnormal behaviour of pools in multiprocessing.pool (GH-882)
authorXiang Zhang <angwerzx@126.com>
Wed, 29 Mar 2017 04:50:28 +0000 (12:50 +0800)
committerGitHub <noreply@github.com>
Wed, 29 Mar 2017 04:50:28 +0000 (12:50 +0800)
commit346dcd65e6b832a35b4cfc15b7309b51a38e9ca2
tree274015e6633f394cdfbe91a7aff4dec828f8fc9d
parentc4021af50526f488c0c280e7c7eaa83ef80ae1df
bpo-28699: fix abnormal behaviour of pools in multiprocessing.pool (GH-882)

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