(self, key)
| 84 | raise AttributeError("Immutable object: set not allowed") |
| 85 | |
| 86 | def __delattr__(self, key): |
| 87 | raise AttributeError("Immutable object: del not allowed") |
| 88 | |
| 89 | |
| 90 | # Verify del is also prevented |
nothing calls this directly
no outgoing calls
no test coverage detected