Wait until parent process terminates
(self, timeout=None)
| 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 |