summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorgrzgrzgrz3 <grzgrzgrz3@gmail.com>2017-05-25 14:22:57 (GMT)
committerAntoine Pitrou <pitrou@free.fr>2017-05-25 14:22:57 (GMT)
commitbc50f03db4f58c869b78e98468e374d7e61f1227 (patch)
tree432d3da98baf4590ccf03e2a6ddb4e797a363fab /Misc
parent7ff1e88a57a37a4cca3af9b0a3528b703d975ea2 (diff)
downloadcpython-bc50f03db4f58c869b78e98468e374d7e61f1227.zip
cpython-bc50f03db4f58c869b78e98468e374d7e61f1227.tar.gz
cpython-bc50f03db4f58c869b78e98468e374d7e61f1227.tar.bz2
bpo-30414: multiprocessing.Queue._feed do not break from main loop on exc (#1683)
* 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.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 47bfdab..98d508a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -341,6 +341,9 @@ Extension Modules
Library
-------
+- bpo-30414: multiprocessing.Queue._feed background running
+ thread do not break from main loop on exception.
+
- bpo-30003: Fix handling escape characters in HZ codec. Based on patch
by Ma Lin.