(self)
| 85 | print("Example 4") |
| 86 | class ValidatingRecord: |
| 87 | def __init__(self): |
| 88 | self.exists = 5 |
| 89 | |
| 90 | def __getattribute__(self, name): |
| 91 | print(f"* Called __getattribute__({name!r})") |
nothing calls this directly
no outgoing calls
no test coverage detected