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

Method cancel_join_thread

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

Source from the content-addressed store, hash-verified

149 self._jointhread()
150
151 def cancel_join_thread(self):
152 debug('Queue.cancel_join_thread()')
153 self._joincancelled = True
154 try:
155 self._jointhread.cancel()
156 except AttributeError:
157 pass
158
159 def _terminate_broken(self):
160 # Close a Queue on error.

Callers

nothing calls this directly

Calls 2

debugFunction · 0.70
cancelMethod · 0.45

Tested by

no test coverage detected