(self, key: t.Any)
| 40 | return type(self), (list(self),) # type: ignore[call-overload] |
| 41 | |
| 42 | def __delitem__(self, key: t.Any) -> t.NoReturn: |
| 43 | _immutable_error(self) |
| 44 | |
| 45 | def __iadd__(self, other: t.Any) -> t.NoReturn: |
| 46 | _immutable_error(self) |
nothing calls this directly
no test coverage detected