(self)
| 130 | def test_dict_dir(self): |
| 131 | class A(object): |
| 132 | def __init__(self): |
| 133 | self.a = 1 |
| 134 | self.b = 2 |
| 135 | def __getattribute__(self, name): |
| 136 | if name=="a": |
| 137 | raise AttributeError |
nothing calls this directly
no outgoing calls
no test coverage detected