Whitespace normalization, via reindent.py.

This commit is contained in:
Tim Peters 2004-07-18 06:16:08 +00:00
parent e6ddc8b20b
commit 182b5aca27
453 changed files with 31318 additions and 31452 deletions

View file

@ -4,21 +4,21 @@ from Tkinter import *
class Test(Frame):
def createWidgets(self):
self.Gpanel = Frame(self, width='1i', height='1i',
background='green')
self.Gpanel.pack(side=LEFT)
self.Gpanel = Frame(self, width='1i', height='1i',
background='green')
self.Gpanel.pack(side=LEFT)
# a QUIT button
self.Gpanel.QUIT = Button(self.Gpanel, text='QUIT',
foreground='red',
command=self.quit)
self.Gpanel.QUIT.pack(side=LEFT)
# a QUIT button
self.Gpanel.QUIT = Button(self.Gpanel, text='QUIT',
foreground='red',
command=self.quit)
self.Gpanel.QUIT.pack(side=LEFT)
def __init__(self, master=None):
Frame.__init__(self, master)
Pack.config(self)
self.createWidgets()
Frame.__init__(self, master)
Pack.config(self)
self.createWidgets()
test = Test()