(self, *args, **kwargs)
| 469 | raise Exception(f"You cannot use ``setdefault`` on a {self.__class__.__name__} instance.") |
| 470 | |
| 471 | def pop(self, *args, **kwargs): |
| 472 | raise Exception(f"You cannot use ``pop`` on a {self.__class__.__name__} instance.") |
| 473 | |
| 474 | def update(self, *args, **kwargs): |
| 475 | raise Exception(f"You cannot use ``update`` on a {self.__class__.__name__} instance.") |
no outgoing calls