(self, attribute_name)
| 262 | """A class whose getattr fails, but not with `AttributeError`.""" |
| 263 | |
| 264 | def __getattr__(self, attribute_name): |
| 265 | raise KeyError() |
| 266 | |
| 267 | def __repr__(self) -> str: |
| 268 | return "Y" |
nothing calls this directly
no outgoing calls
no test coverage detected