(self)
| 609 | return f"<{cls.__module__}.{cls.__qualname__} at {id(self):#x}: {status}>" |
| 610 | |
| 611 | def _at_fork_reinit(self): |
| 612 | # Private method called by Thread._after_fork() |
| 613 | self._cond._at_fork_reinit() |
| 614 | |
| 615 | def is_set(self): |
| 616 | """Return true if and only if the internal flag is true.""" |
no outgoing calls
no test coverage detected