mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Whitespace normalization, via reindent.py.
This commit is contained in:
parent
e6ddc8b20b
commit
182b5aca27
453 changed files with 31318 additions and 31452 deletions
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue