(self, iterable: t.Any)
| 58 | _immutable_error(self) |
| 59 | |
| 60 | def extend(self, iterable: t.Any) -> t.NoReturn: |
| 61 | _immutable_error(self) |
| 62 | |
| 63 | def insert(self, pos: t.Any, value: t.Any) -> t.NoReturn: |
| 64 | _immutable_error(self) |
nothing calls this directly
no test coverage detected