MCPcopy Index your code
hub / github.com/python/cpython / join_thread

Method join_thread

Lib/multiprocessing/queues.py:145–149  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

143 close()
144
145 def join_thread(self):
146 debug('Queue.join_thread()')
147 assert self._closed, "Queue {0!r} not closed".format(self)
148 if self._jointhread:
149 self._jointhread()
150
151 def cancel_join_thread(self):
152 debug('Queue.cancel_join_thread()')

Callers 15

_terminate_brokenMethod · 0.95
do_blocking_testMethod · 0.80
_cleanupMethod · 0.80
test_enter_concurrentMethod · 0.80
close_queueFunction · 0.80
join_processFunction · 0.80
test_notifyMethod · 0.80

Calls 2

debugFunction · 0.70
formatMethod · 0.45

Tested by 15

do_blocking_testMethod · 0.64
_cleanupMethod · 0.64
test_enter_concurrentMethod · 0.64
close_queueFunction · 0.64
join_processFunction · 0.64
test_notifyMethod · 0.64
test_notify_allMethod · 0.64