(self, *args, **kwargs)
| 481 | raise Exception(f"You cannot use ``setdefault`` on a {self.__class__.__name__} instance.") |
| 482 | |
| 483 | def pop(self, *args, **kwargs): |
| 484 | raise Exception(f"You cannot use ``pop`` on a {self.__class__.__name__} instance.") |
| 485 | |
| 486 | def update(self, *args, **kwargs): |
| 487 | raise Exception(f"You cannot use ``update`` on a {self.__class__.__name__} instance.") |
no outgoing calls