Last minute fix to Text.window_cget(), which should properly Tcl-ify

the option name (prepend '-', strip trailing '_').
This commit is contained in:
Guido van Rossum 1997-12-11 17:08:52 +00:00
parent 9afad049e0
commit 7814ea64ff
1 changed files with 4 additions and 0 deletions

View File

@ -1625,6 +1625,10 @@ def tag_remove(self, tagName, index1, index2=None):
self.tk.call(
self._w, 'tag', 'remove', tagName, index1, index2)
def window_cget(self, index, option):
if option[:1] != '-':
option = '-' + option
if option[-1:] == '_':
option = option[:-1]
return self.tk.call(self._w, 'window', 'cget', index, option)
def window_configure(self, index, cnf={}, **kw):
if type(cnf) == StringType: