(self, key)
| 54 | setattr(self, k, kwargs[k]) |
| 55 | |
| 56 | def __getattr__(self, key): |
| 57 | if is_instrumented(self, key): |
| 58 | return get_attribute(self, key) |
| 59 | else: |
| 60 | try: |
| 61 | return self._goofy_dict[key] |
| 62 | except KeyError: |
| 63 | raise AttributeError(key) |
| 64 | |
| 65 | def __setattr__(self, key, value): |
| 66 | if is_instrumented(self, key): |
nothing calls this directly
no test coverage detected