(self)
| 265 | # Type ignored because it's bypassed intentionally. |
| 266 | @property # type: ignore |
| 267 | def __class__(self): |
| 268 | assert False, "via __class__" |
| 269 | |
| 270 | with pytest.raises(AssertionError) as excinfo: |
| 271 | with pytest.raises(CrappyClass()): # type: ignore[call-overload] |
nothing calls this directly
no outgoing calls
no test coverage detected