(self, *args, **kwargs)
| 72 | raise Exception(f"You cannot use ``pop`` on a {self.__class__.__name__} instance.") |
| 73 | |
| 74 | def update(self, *args, **kwargs): |
| 75 | raise Exception(f"You cannot use ``update`` on a {self.__class__.__name__} instance.") |
| 76 | |
| 77 | def __setattr__(self, name, value): |
| 78 | if hasattr(self, "__frozen") and self.__frozen: |