Insert STRING at INDEX.
(self, index, string)
| 3350 | self._w, 'index', index)) |
| 3351 | |
| 3352 | def insert(self, index, string): |
| 3353 | """Insert STRING at INDEX.""" |
| 3354 | self.tk.call(self._w, 'insert', index, string) |
| 3355 | |
| 3356 | def scan_mark(self, x): |
| 3357 | """Remember the current X, Y coordinates.""" |