(self, attr)
| 1463 | |
| 1464 | class RecursionDepthError: |
| 1465 | def __getattr__(self, attr): |
| 1466 | return getattr(self, "_" + attr) |
| 1467 | |
| 1468 | with pytest.raises(RuntimeError) as excinfo: |
| 1469 | RecursionDepthError().trigger |
nothing calls this directly
no outgoing calls
no test coverage detected