| 25 | |
| 26 | |
| 27 | class ThreadExceptionMeta(NamedTuple): |
| 28 | msg: str |
| 29 | cause_msg: str |
| 30 | exc_value: BaseException | None |
| 31 | |
| 32 | |
| 33 | thread_exceptions: StashKey[collections.deque[ThreadExceptionMeta | BaseException]] = ( |
no outgoing calls
no test coverage detected