(self, data)
| 186 | print("Example 12") |
| 187 | class DictionaryRecord: |
| 188 | def __init__(self, data): |
| 189 | self._data = data |
| 190 | |
| 191 | def __getattribute__(self, name): |
| 192 | # Prevent weird interactions with isinstance() used |
nothing calls this directly
no outgoing calls
no test coverage detected