Lines Matching refs:parent_process
326 self.assertIsNone(self.parent_process())
339 from multiprocessing.process import parent_process
340 wconn.send([parent_process().pid, parent_process().name])
375 from multiprocessing.process import parent_process
376 wconn.send("alive" if parent_process().is_alive() else "not alive")
377 parent_process().join(timeout=support.SHORT_TIMEOUT)
378 wconn.send("alive" if parent_process().is_alive() else "not alive")
5847 parent_process = staticmethod(multiprocessing.parent_process)