From: Georg Brandl Date: Sun, 11 May 2008 21:34:10 +0000 (+0000) Subject: #2535: remove duplicated method. X-Git-Tag: v2.6b1~479 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=275360eaa580a7fcf65f724f0a92751f3ac981a2;p=python #2535: remove duplicated method. --- diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index af77544c5d..e8b47a4f1e 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).