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