MCPcopy Index your code
hub / github.com/RustPython/RustPython / join

Method join

Lib/multiprocessing/managers.py:616–623  ·  view source on GitHub ↗

Join the manager process (if it has been spawned)

(self, timeout=None)

Source from the content-addressed store, hash-verified

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

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