Set the selection from START to END (not included).
(self, start, end)
| 3390 | select_present = selection_present |
| 3391 | |
| 3392 | def selection_range(self, start, end): |
| 3393 | """Set the selection from START to END (not included).""" |
| 3394 | self.tk.call(self._w, 'selection', 'range', start, end) |
| 3395 | |
| 3396 | select_range = selection_range |
| 3397 |