| 11 | from typing import Protocol |
| 12 | |
| 13 | class ExceptHookArgs(Protocol): |
| 14 | @property |
| 15 | def exc_type(self) -> type[BaseException]: ... |
| 16 | @property |
| 17 | def exc_value(self) -> BaseException | None: ... |
| 18 | @property |
| 19 | def exc_traceback(self) -> TracebackType | None: ... |
| 20 | @property |
| 21 | def thread(self) -> Thread | None: ... |
| 22 | |
| 23 | class ShowExceptions(Protocol): |
| 24 | def __call__(self) -> int: ... |
no outgoing calls
no test coverage detected
searching dependent graphs…