Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions 18 Lib/multiprocessing/queues.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ def _feed(buffer, notempty, send, writelock, close):
else:
wacquire = None

try:
while 1:
while 1:
try:
nacquire()
try:
if not buffer:
Expand All @@ -270,19 +270,17 @@ def _feed(buffer, notempty, send, writelock, close):
wrelease()
except IndexError:
pass
except Exception, e:
# Since this runs in a daemon thread the resources it uses
# may be become unusable while the process is cleaning up.
# We ignore errors which happen after the process has
# started to cleanup.
try:
except Exception as e:
# Since this runs in a daemon thread the resources it uses
# may be become unusable while the process is cleaning up.
# We ignore errors which happen after the process has
# started to cleanup.
if is_exiting():
info('error in queue thread: %s', e)
return
else:
import traceback
traceback.print_exc()
except Exception:
pass

_sentinel = object()

Expand Down
15 changes: 15 additions & 0 deletions 15 Lib/test/test_multiprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,21 @@ def test_no_import_lock_contention(self):
self.fail("Probable regression on import lock contention;"
" see Issue #22853")

def test_queue_feeder_donot_stop_onexc(self):
# bpo-30414: verify feeder handles exceptions correctly
if self.TYPE != 'processes':
self.skipTest('test not appropriate for {}'.format(self.TYPE))

class NotSerializable(object):
def __reduce__(self):
raise AttributeError
with test.support.captured_stderr():
q = self.Queue()
q.put(NotSerializable())
q.put(True)
self.assertTrue(q.get(timeout=0.1))


#
#
#
Expand Down
3 changes: 3 additions & 0 deletions 3 Misc/NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,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.

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.