diff options
author | Georg Brandl <georg@python.org> | 2008-05-11 21:34:10 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-11 21:34:10 (GMT) |
commit | 275360eaa580a7fcf65f724f0a92751f3ac981a2 (patch) | |
tree | dab8ba912a709ab516a5d8a7547852587d8832a3 /Lib/lib-tk | |
parent | 3fc974f2d4d3d8f0c5ae54f3a347422b50a1c560 (diff) | |
download | cpython-275360eaa580a7fcf65f724f0a92751f3ac981a2.zip cpython-275360eaa580a7fcf65f724f0a92751f3ac981a2.tar.gz cpython-275360eaa580a7fcf65f724f0a92751f3ac981a2.tar.bz2 |
#2535: remove duplicated method.
Diffstat (limited to 'Lib/lib-tk')
-rw-r--r-- | Lib/lib-tk/Tkinter.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index af77544..e8b47a4 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -590,9 +590,6 @@ class Misc: status = self.tk.call('grab', 'status', self._w) if status == 'none': status = None return status - def lower(self, belowThis=None): - """Lower this widget in the stacking order.""" - self.tk.call('lower', self._w, belowThis) def option_add(self, pattern, value, priority = None): """Set a VALUE (second parameter) for an option PATTERN (first parameter). |