| 35 | |
| 36 | def test_exceptions() -> None: |
| 37 | class BrokenRepr: |
| 38 | def __init__(self, ex): |
| 39 | self.ex = ex |
| 40 | |
| 41 | def __repr__(self): |
| 42 | raise self.ex |
| 43 | |
| 44 | class BrokenReprException(Exception): |
| 45 | __str__ = None # type: ignore[assignment] |
no outgoing calls