Return True if INDEX is part of the selection.
(self, index)
| 3446 | select_clear = selection_clear |
| 3447 | |
| 3448 | def selection_includes(self, index): |
| 3449 | """Return True if INDEX is part of the selection.""" |
| 3450 | return self.tk.getboolean(self.tk.call( |
| 3451 | self._w, 'selection', 'includes', index)) |
| 3452 | |
| 3453 | select_includes = selection_includes |
| 3454 |
nothing calls this directly
no test coverage detected