(self, name)
| 28 | class Obj(dict): |
| 29 | """Dictionary with attribute access to names.""" |
| 30 | def __getattr__(self, name): |
| 31 | try: |
| 32 | return self[name] |
| 33 | except KeyError: |
| 34 | raise AttributeError(name) |
| 35 | |
| 36 | def __setattr__(self, name, val): |
| 37 | self[name] = val |
nothing calls this directly
no outgoing calls
no test coverage detected