Set the fixed end oft the selection to INDEX.
(self, index)
| 3514 | self.tk.call(self._w, 'see', index) |
| 3515 | |
| 3516 | def selection_anchor(self, index): |
| 3517 | """Set the fixed end oft the selection to INDEX.""" |
| 3518 | self.tk.call(self._w, 'selection', 'anchor', index) |
| 3519 | |
| 3520 | select_anchor = selection_anchor |
| 3521 |