(self)
| 602 | return f"<{cls.__module__}.{cls.__qualname__} at {id(self):#x}: {status}>" |
| 603 | |
| 604 | def _at_fork_reinit(self): |
| 605 | # Private method called by Thread._after_fork() |
| 606 | self._cond._at_fork_reinit() |
| 607 | |
| 608 | def is_set(self): |
| 609 | """Return true if and only if the internal flag is true.""" |
no outgoing calls
no test coverage detected