(self)
| 376 | # Type ignored because it's bypassed intentionally. |
| 377 | @property # type: ignore |
| 378 | def __class__(self): |
| 379 | assert False, "via __class__" |
| 380 | |
| 381 | with pytest.raises(AssertionError) as excinfo: |
| 382 | with pytest.raises(CrappyClass()): # type: ignore[call-overload] |
no outgoing calls