(self)
| 569 | return f"<{cls.__module__}.{cls.__qualname__} at {id(self):#x}: {status}>" |
| 570 | |
| 571 | def _at_fork_reinit(self): |
| 572 | # Private method called by Thread._reset_internal_locks() |
| 573 | self._cond._at_fork_reinit() |
| 574 | |
| 575 | def is_set(self): |
| 576 | """Return true if and only if the internal flag is true.""" |
no outgoing calls
no test coverage detected