(self)
| 131 | return new |
| 132 | |
| 133 | def copy(self) -> NoReturn: |
| 134 | raise NotImplementedError( |
| 135 | "an immutabledict shouldn't need to be copied. use dict(d) " |
| 136 | "if you need a mutable dictionary." |
| 137 | ) |
| 138 | |
| 139 | def __reduce__(self) -> Any: |
| 140 | return FacadeDict, (dict(self),) |
no outgoing calls
no test coverage detected