[Python-checkins] [python/cpython] bdd964: [2.7] bpo-30414: multiprocessing.Queue._feed do no...
GitHub
noreply at github.com
Thu May 25 11:53:06 EDT 2017
Branch: refs/heads/2.7
Home: https://github.com/python/cpython
Commit: bdd964710deffe8593063dcb63157e5b55a82c61
https://github.com/python/cpython/commit/bdd964710deffe8593063dcb63157e5b55a82c61
Author: Antoine Pitrou <pitrou at free.fr>
Date: 2017年05月25日 (2017年5月25日)
Changed paths:
M Lib/multiprocessing/queues.py
M Lib/test/test_multiprocessing.py
M Misc/NEWS
Log Message:
-----------
[2.7] bpo-30414: multiprocessing.Queue._feed do not break from main loop on exc (GH-1683) (#1817)
* bpo-30414: multiprocesing.Queue._feed do not break from main loop on exc
Queue background running thread was not handling exceptions correctly.
Any exception occurred inside thread (putting unpickable object) cause
feeder to finish running. After that every message put into queue is
silently ignored.
* bpo-30414: multiprocesing.Queue._feed do not break from main loop on exc
Queue background running thread was not handling exceptions correctly.
Any exception occurred inside thread (putting unpickable object) cause
feeder to finish running. After that every message put into queue is
silently ignored..
(cherry picked from commit bc50f03db4f58c869b78e98468e374d7e61f1227)
More information about the Python-checkins
mailing list