diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-07-18 06:16:08 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-07-18 06:16:08 +0000 |
commit | 182b5aca27d376b08a2904bed42b751496f932f3 (patch) | |
tree | df13115820dbc879c0fe2eae488c9f8c0215a7da /Demo/tkinter/matt/not-what-you-might-think-2.py | |
parent | e6ddc8b20b493fef2e7cffb2e1351fe1d238857e (diff) | |
download | cpython-git-182b5aca27d376b08a2904bed42b751496f932f3.tar.gz |
Whitespace normalization, via reindent.py.
Diffstat (limited to 'Demo/tkinter/matt/not-what-you-might-think-2.py')
-rw-r--r-- | Demo/tkinter/matt/not-what-you-might-think-2.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Demo/tkinter/matt/not-what-you-might-think-2.py b/Demo/tkinter/matt/not-what-you-might-think-2.py index c01854e96c..9ee197cf98 100644 --- a/Demo/tkinter/matt/not-what-you-might-think-2.py +++ b/Demo/tkinter/matt/not-what-you-might-think-2.py @@ -4,23 +4,23 @@ from Tkinter import * class Test(Frame): def createWidgets(self): - self.Gpanel = Frame(self, width='1i', height='1i', - background='green') + self.Gpanel = Frame(self, width='1i', height='1i', + background='green') - # this line turns off the recalculation of geometry by masters. - self.Gpanel.propagate(0) + # this line turns off the recalculation of geometry by masters. + self.Gpanel.propagate(0) - self.Gpanel.pack(side=LEFT) + 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() |