(self, *, index, item)
| 213 | self.source_remove(index=index, item=item) |
| 214 | |
| 215 | def source_remove(self, *, index, item): |
| 216 | indexes = NSIndexSet.indexSetWithIndex(index) |
| 217 | self.native_table.removeRowsAtIndexes( |
| 218 | indexes, withAnimation=NSTableViewAnimation.EffectNone |
| 219 | ) |
| 220 | |
| 221 | # Alias for backwards compatibility: |
| 222 | # March 2026: In 0.5.3 and earlier, notification methods |