aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Demo/tkinter/matt/subclass-existing-widgets.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-07-30 18:57:18 +0000
committerGuido van Rossum <guido@python.org>1996-07-30 18:57:18 +0000
commit89cb67bb642ee958d9f095728c99e943e994ca54 (patch)
tree24f176f21636ab7b3a5cd1cec9948b4e3a1315ff /Demo/tkinter/matt/subclass-existing-widgets.py
parentc30e95f4b0fa266df678fe4e307ff6c19a3f9e73 (diff)
downloadcpython-89cb67bb642ee958d9f095728c99e943e994ca54.tar.gz
cpython-89cb67bb642ee958d9f095728c99e943e994ca54.zip
Updated for Python 1.4
Diffstat (limited to 'Demo/tkinter/matt/subclass-existing-widgets.py')
-rw-r--r--Demo/tkinter/matt/subclass-existing-widgets.py14
1 files changed, 5 insertions, 9 deletions
diff --git a/Demo/tkinter/matt/subclass-existing-widgets.py b/Demo/tkinter/matt/subclass-existing-widgets.py
index 3a0e1964348..e79dd5c8750 100644
--- a/Demo/tkinter/matt/subclass-existing-widgets.py
+++ b/Demo/tkinter/matt/subclass-existing-widgets.py
@@ -11,22 +11,18 @@ class New_Button(Button):
def createWidgets(top):
f = Frame(top)
f.pack()
- f.QUIT = Button(f, {'text': 'QUIT',
- 'fg': 'red',
- 'command': top.quit})
-
- f.QUIT.pack({'side': 'left', 'fill': 'both'})
+ f.QUIT = Button(f, text='QUIT', foreground='red', command=top.quit)
+ f.QUIT.pack(side=LEFT, fill=BOTH)
# a hello button
- f.hi_there = New_Button(f, {'text': 'Hello'})
+ f.hi_there = New_Button(f, text='Hello')
# we do this on a different line because we need to reference f.hi_there
- f.hi_there.config({'command' : f.hi_there.callback})
- f.hi_there.pack({'side': 'left'})
+ f.hi_there.config(command=f.hi_there.callback)
+ f.hi_there.pack(side=LEFT)
f.hi_there.counter = 43
-
root = Tk()
createWidgets(root)
root.mainloop()