(self, *args, **kwargs)
| 96 | raise Exception(f"You cannot use ``setdefault`` on a {self.__class__.__name__} instance.") |
| 97 | |
| 98 | def pop(self, *args, **kwargs): |
| 99 | raise Exception(f"You cannot use ``pop`` on a {self.__class__.__name__} instance.") |
| 100 | |
| 101 | def update(self, *args, **kwargs): |
| 102 | raise Exception(f"You cannot use ``update`` on a {self.__class__.__name__} instance.") |
no outgoing calls