(self, other: t.Any)
| 43 | _immutable_error(self) |
| 44 | |
| 45 | def __iadd__(self, other: t.Any) -> t.NoReturn: |
| 46 | _immutable_error(self) |
| 47 | |
| 48 | def __imul__(self, other: t.Any) -> t.NoReturn: |
| 49 | _immutable_error(self) |
nothing calls this directly
no test coverage detected