(self, name)
| 166 | self._data = data |
| 167 | |
| 168 | def __getattribute__(self, name): |
| 169 | print(f"* Called __getattribute__({name!r})") |
| 170 | return self._data[name] |
| 171 | |
| 172 | |
| 173 | print("Example 11") |
nothing calls this directly
no outgoing calls
no test coverage detected