(self, new_ident=None)
| 1451 | raise RuntimeError("cannot join a dummy thread") |
| 1452 | |
| 1453 | def _after_fork(self, new_ident=None): |
| 1454 | if new_ident is not None: |
| 1455 | self.__class__ = _MainThread |
| 1456 | self._name = 'MainThread' |
| 1457 | self._daemonic = False |
| 1458 | Thread._after_fork(self, new_ident=new_ident) |
| 1459 | |
| 1460 | |
| 1461 | # Global API functions |
nothing calls this directly
no test coverage detected