(self, attr_name)
| 71 | return ["a", "b"] |
| 72 | |
| 73 | def __getattribute__(self, attr_name): |
| 74 | if attr_name == "b": |
| 75 | raise RuntimeError("unavailable") |
| 76 | return object.__getattribute__(self, attr_name) |
| 77 | |
| 78 | obj = MyObject() |
| 79 | dictionary = default_resolver.get_dictionary(obj) |
no outgoing calls
no test coverage detected