(self, other: t.Any)
| 46 | _immutable_error(self) |
| 47 | |
| 48 | def __imul__(self, other: t.Any) -> t.NoReturn: |
| 49 | _immutable_error(self) |
| 50 | |
| 51 | def __setitem__(self, key: t.Any, value: t.Any) -> t.NoReturn: |
| 52 | _immutable_error(self) |
nothing calls this directly
no test coverage detected