(self)
| 1450 | _DeleteDummyThreadOnDel(self) |
| 1451 | |
| 1452 | def is_alive(self): |
| 1453 | if not self._os_thread_handle.is_done() and self._started.is_set(): |
| 1454 | return True |
| 1455 | raise RuntimeError("thread is not alive") |
| 1456 | |
| 1457 | def join(self, timeout=None): |
| 1458 | raise RuntimeError("cannot join a dummy thread") |