(self, name)
| 238 | |
| 239 | class OverriddenGetattribute(Foo): |
| 240 | def __getattribute__(self, name): |
| 241 | raise AssertionError("custom get attribute invoked") |
| 242 | |
| 243 | |
| 244 | class TestAttrCompletion(unittest.TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected