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

Method join

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

Source from the content-addressed store, hash-verified

346 self._cond.notify_all()
347
348 def join(self):
349 with self._cond:
350 if not self._unfinished_tasks._semlock._is_zero():
351 self._cond.wait()
352
353#
354# Simplified Queue type -- really just a locked pipe

Callers 2

test_task_doneMethod · 0.95
_finalize_joinMethod · 0.45

Calls 1

waitMethod · 0.45

Tested by 1

test_task_doneMethod · 0.76