(self, key: _KeyType)
| 82 | ) |
| 83 | |
| 84 | def __delitem__(self, key: _KeyType): |
| 85 | validate_slice(key) |
| 86 | self._operations.append(_operation("Delete", self._location + [key])) |
| 87 | |
| 88 | def __iadd__(self, other: Any): |
| 89 | if isinstance(other, (list, tuple)): |
no test coverage detected