(self, timeout: float | None = 5.0)
| 51 | thread: threading.Thread | None = None |
| 52 | |
| 53 | def join(self, timeout: float | None = 5.0) -> None: |
| 54 | if self.thread is not None: |
| 55 | self.thread.join(timeout=timeout) |
| 56 | |
| 57 | |
| 58 | def _system_context_allowed() -> bool: |
no outgoing calls