(self, item: t.Any)
| 55 | _immutable_error(self) |
| 56 | |
| 57 | def remove(self, item: t.Any) -> t.NoReturn: |
| 58 | _immutable_error(self) |
| 59 | |
| 60 | def extend(self, iterable: t.Any) -> t.NoReturn: |
| 61 | _immutable_error(self) |
nothing calls this directly
no test coverage detected