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

Method join

Lib/multiprocessing/managers.py:617–624  ·  view source on GitHub ↗

Join the manager process (if it has been spawned)

(self, timeout=None)

Source from the content-addressed store, hash-verified

615 return Token(typeid, self._address, id), exposed
616
617 def join(self, timeout=None):
618 '''
619 Join the manager process (if it has been spawned)
620 '''
621 if self._process is not None:
622 self._process.join(timeout)
623 if not self._process.is_alive():
624 self._process = None
625
626 def _debug_info(self):
627 '''

Callers 4

debug_infoMethod · 0.45
startMethod · 0.45
_finalize_managerMethod · 0.45
__repr__Method · 0.45

Calls 1

is_aliveMethod · 0.45

Tested by

no test coverage detected