Insert ELEMENTS at INDEX.
(self, index, *elements)
| 3491 | return self.tk.getint(i) |
| 3492 | |
| 3493 | def insert(self, index, *elements): |
| 3494 | """Insert ELEMENTS at INDEX.""" |
| 3495 | self.tk.call((self._w, 'insert', index) + elements) |
| 3496 | |
| 3497 | def nearest(self, y): |
| 3498 | """Get index of item which is nearest to y coordinate Y.""" |