]> granicus.if.org Git - python/commit
bpo-30886: Fix multiprocessing.Queue.join_thread() (#2642)
authorVictor Stinner <victor.stinner@gmail.com>
Mon, 10 Jul 2017 10:45:21 +0000 (12:45 +0200)
committerGitHub <noreply@github.com>
Mon, 10 Jul 2017 10:45:21 +0000 (12:45 +0200)
commit3b69d911c57ef591ac0c0f47a66dbcad8337f33a
treeb4c9fc10ede957175251625355056c0c48ab4af7
parent7e60192fe0dfd763b0d458cf0898ba4f7ac7d81a
bpo-30886: Fix multiprocessing.Queue.join_thread() (#2642)

multiprocessing.Queue.join_thread() now waits until the thread
completes, even if the thread was started by the same process which
created the queue.

Fix the following warning which occurs randomly when running
test_handle_called_with_mp_queue of test_logging.QueueListenerTest:

Warning -- threading_cleanup() failed to cleanup -1 threads after 4 sec (count: 0, dangling: 1)
Lib/multiprocessing/queues.py
Misc/NEWS.d/next/Library/2017-07-10-12-14-22.bpo-30886.nqQj34.rst [new file with mode: 0644]