[Python-checkins] r63097 - python/trunk/Lib/lib-tk/Tkinter.py

georg.brandl python-checkins at python.org
Sun May 11 23:34:11 CEST 2008


Author: georg.brandl
Date: Sun May 11 23:34:10 2008
New Revision: 63097

Log:
#2535: remove duplicated method.


Modified:
   python/trunk/Lib/lib-tk/Tkinter.py

Modified: python/trunk/Lib/lib-tk/Tkinter.py
==============================================================================
--- python/trunk/Lib/lib-tk/Tkinter.py	(original)
+++ python/trunk/Lib/lib-tk/Tkinter.py	Sun May 11 23:34:10 2008
@@ -590,9 +590,6 @@
         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).


More information about the Python-checkins mailing list