mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
Always convert Text.index result to string.
This improves compatibility with Tcl 8.5, which would otherwise return textindex objects.
This commit is contained in:
parent
17cb5cf403
commit
f5d902fc47
1 changed files with 1 additions and 1 deletions
|
|
@ -2981,7 +2981,7 @@ class Text(Widget):
|
|||
return self.tk.call(self._w, "image", "names")
|
||||
def index(self, index):
|
||||
"""Return the index in the form line.char for INDEX."""
|
||||
return self.tk.call(self._w, 'index', index)
|
||||
return str(self.tk.call(self._w, 'index', index))
|
||||
def insert(self, index, chars, *args):
|
||||
"""Insert CHARS before the characters at INDEX. An additional
|
||||
tag can be given in ARGS. Additional CHARS and tags can follow in ARGS."""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue