[Python-checkins] r64043 - in sandbox/trunk/ttk-gsoc/src: 2.x/ttk.py 3.x/ttk.py

guilherme.polo python-checkins at python.org
Sun Jun 8 22:12:42 CEST 2008


Author: guilherme.polo
Date: Sun Jun  8 22:12:42 2008
New Revision: 64043

Log:
The "forget" alias is not needed for Panedwindow as it is already done at Tkinter

Modified:
   sandbox/trunk/ttk-gsoc/src/2.x/ttk.py
   sandbox/trunk/ttk-gsoc/src/3.x/ttk.py

Modified: sandbox/trunk/ttk-gsoc/src/2.x/ttk.py
==============================================================================
--- sandbox/trunk/ttk-gsoc/src/2.x/ttk.py	(original)
+++ sandbox/trunk/ttk-gsoc/src/2.x/ttk.py	Sun Jun  8 22:12:42 2008
@@ -901,9 +901,6 @@
         Widget.__init__(self, master, "ttk::panedwindow", kw)
 
 
-    forget = Tkinter.PanedWindow.remove
-
-
     def insert(self, pos, child, **kw):
         """Inserts a pane at the specified positions.
 

Modified: sandbox/trunk/ttk-gsoc/src/3.x/ttk.py
==============================================================================
--- sandbox/trunk/ttk-gsoc/src/3.x/ttk.py	(original)
+++ sandbox/trunk/ttk-gsoc/src/3.x/ttk.py	Sun Jun  8 22:12:42 2008
@@ -901,9 +901,6 @@
         Widget.__init__(self, master, "ttk::panedwindow", kw)
 
 
-    forget = tkinter.PanedWindow.remove
-
-
     def insert(self, pos, child, **kw):
         """Inserts a pane at the specified positions.
 


More information about the Python-checkins mailing list