(self)
| 51 | |
| 52 | class SillierWithDir(MisbehavingGetattr): |
| 53 | def __dir__(self): |
| 54 | return ['some_method'] |
| 55 | |
| 56 | for bad_klass in (MisbehavingGetattr, SillierWithDir): |
| 57 | res = dir2(bad_klass()) |
nothing calls this directly
no outgoing calls
no test coverage detected