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

Method join

Lib/multiprocessing/process.py:388–393  ·  view source on GitHub ↗

Wait until parent process terminates

(self, timeout=None)

Source from the content-addressed store, hash-verified

386 return self._pid
387
388 def join(self, timeout=None):
389 '''
390 Wait until parent process terminates
391 '''
392 from multiprocessing.connection import wait
393 wait([self._sentinel], timeout=timeout)
394
395 pid = ident
396

Callers

nothing calls this directly

Calls 1

waitFunction · 0.90

Tested by

no test coverage detected