]> granicus.if.org Git - python/commit
bpo-28699: fix abnormal behaviour of pools in multiprocessing.pool (GH-693)
authorXiang Zhang <angwerzx@126.com>
Wed, 29 Mar 2017 03:58:54 +0000 (11:58 +0800)
committerGitHub <noreply@github.com>
Wed, 29 Mar 2017 03:58:54 +0000 (11:58 +0800)
commit794623bdb232eafd8925f76470209afcdcbcdcd2
tree347ef8d6c630abbe08af35ae9280ada42b101f7d
parentec1f5df46ed37aa3e839d20298c4b361a9a74bc4
bpo-28699: fix  abnormal behaviour of pools in multiprocessing.pool (GH-693)

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