diff options
author | Guilherme Polo <ggpolo@gmail.com> | 2009-08-14 15:05:30 (GMT) |
---|---|---|
committer | Guilherme Polo <ggpolo@gmail.com> | 2009-08-14 15:05:30 (GMT) |
commit | 1fff00832639082d2d7aa354c8e6d9110171d6bc (patch) | |
tree | 969c400d839ce118c879c0537cd93065c24fe518 /Lib/tkinter/ttk.py | |
parent | 6837083582176067868d1cc60772ef9de6ef6bd3 (diff) | |
download | cpython-1fff00832639082d2d7aa354c8e6d9110171d6bc.zip cpython-1fff00832639082d2d7aa354c8e6d9110171d6bc.tar.gz cpython-1fff00832639082d2d7aa354c8e6d9110171d6bc.tar.bz2 |
Merged revisions 74446-74449 via svnmerge from
svn+ssh://pythondev/python/trunk
........
r74446 | guilherme.polo | 2009-08-14 10:53:41 -0300 (Fri, 14 Aug 2009) | 1 line
Issue #3344: Replace itertools.count by enumerate.
........
r74447 | guilherme.polo | 2009-08-14 11:03:07 -0300 (Fri, 14 Aug 2009) | 1 line
Issue #3926: Fix the usage of the new showwarnings and formatwarning.
........
r74448 | guilherme.polo | 2009-08-14 11:36:45 -0300 (Fri, 14 Aug 2009) | 3 lines
Issue #1135: Add the XView and YView mix-ins to avoid duplicating
the xview* and yview* methods.
........
r74449 | guilherme.polo | 2009-08-14 11:43:43 -0300 (Fri, 14 Aug 2009) | 1 line
Clarifying Entry.selection_present's docstring.
........
Diffstat (limited to 'Lib/tkinter/ttk.py')
-rw-r--r-- | Lib/tkinter/ttk.py | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/Lib/tkinter/ttk.py b/Lib/tkinter/ttk.py index 108a65f..e10c668 100644 --- a/Lib/tkinter/ttk.py +++ b/Lib/tkinter/ttk.py @@ -1170,7 +1170,7 @@ class Sizegrip(Widget): Widget.__init__(self, master, "ttk::sizegrip", kw) -class Treeview(Widget): +class Treeview(Widget, tkinter.XView, tkinter.YView): """Ttk Treeview widget displays a hierarchical collection of items. Each item has a textual label, an optional image, and an optional list @@ -1480,16 +1480,6 @@ class Treeview(Widget): return self.tk.call(self._w, "tag", "has", tagname, item) - def xview(self, *args): - """Query or modify horizontal position of the treeview.""" - return self.tk.call(self._w, "xview", *args) - - - def yview(self, *args): - """Query or modify vertical position of the treeview.""" - return self.tk.call(self._w, "yview", *args) - - # Extensions class LabeledScale(Frame): |