(self)
| 380 | return output |
| 381 | |
| 382 | def __hash__(self): |
| 383 | if self._box_config["frozen_box"]: |
| 384 | hashing = 54321 |
| 385 | for item in self.items(): |
| 386 | hashing ^= hash(item) |
| 387 | return hashing |
| 388 | raise BoxTypeError('unhashable type: "Box"') |
| 389 | |
| 390 | def __dir__(self) -> list[str]: |
| 391 | items = set(super().__dir__()) |
nothing calls this directly
no test coverage detected