(self, key)
| 69 | self._goofy_dict[key] = value |
| 70 | |
| 71 | def __delattr__(self, key): |
| 72 | if is_instrumented(self, key): |
| 73 | del_attribute(self, key) |
| 74 | else: |
| 75 | del self._goofy_dict[key] |
| 76 | |
| 77 | |
| 78 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected