(self)
| 773 | return item |
| 774 | |
| 775 | def clear(self): |
| 776 | if self._box_config["frozen_box"]: |
| 777 | raise BoxError("Box is frozen") |
| 778 | super().clear() |
| 779 | self._box_config["__safe_keys"].clear() |
| 780 | |
| 781 | def popitem(self): |
| 782 | if self._box_config["frozen_box"]: |