Detect list del events and emit change events.
(self, index: SupportsIndex | slice)
| 932 | self.changed() |
| 933 | |
| 934 | def __delitem__(self, index: SupportsIndex | slice) -> None: |
| 935 | """Detect list del events and emit change events.""" |
| 936 | list.__delitem__(self, index) |
| 937 | self.changed() |
| 938 | |
| 939 | def pop(self, *arg: SupportsIndex) -> _T: |
| 940 | result = list.pop(self, *arg) |
nothing calls this directly
no test coverage detected