summaryrefslogtreecommitdiffstats
path: root/Doc/lib/tkinter.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2003-05-20 15:21:08 (GMT)
committerFred Drake <fdrake@acm.org>2003-05-20 15:21:08 (GMT)
commite5a55519a8a0a9968893e0b575059410b466ac19 (patch)
treed9be7ab6cafa2f1709a64b73280531f739b4ed77 /Doc/lib/tkinter.tex
parent6695ba89de69ee3857f0e394967a379b2d847213 (diff)
downloadcpython-e5a55519a8a0a9968893e0b575059410b466ac19.zip
cpython-e5a55519a8a0a9968893e0b575059410b466ac19.tar.gz
cpython-e5a55519a8a0a9968893e0b575059410b466ac19.tar.bz2
Remove unused line numbers from example code.
Line numbering of examples is not used elsewhere.
Diffstat (limited to 'Doc/lib/tkinter.tex')
-rw-r--r--Doc/lib/tkinter.tex55
1 files changed, 27 insertions, 28 deletions
diff --git a/Doc/lib/tkinter.tex b/Doc/lib/tkinter.tex
index 2fe49f8..8ef40ff 100644
--- a/Doc/lib/tkinter.tex
+++ b/Doc/lib/tkinter.tex
@@ -220,34 +220,33 @@ place to go when nothing else makes sense.
\begin{verbatim}
-from Tkinter import * 1
- 2
-class Application(Frame): 3
- def say_hi(self): 4
- print "hi there, everyone!" 5
- 6
- def createWidgets(self): 7
- self.QUIT = Button(self) 8
- self.QUIT["text"] = "QUIT" 9
- self.QUIT["fg"] = "red" 10
- self.QUIT["command"] = self.quit 11
- 12
- self.QUIT.pack({"side": "left"}) 13
- 14
- self.hi_there = Button(self) 15
- self.hi_there["text"] = "Hello", 16
- self.hi_there["command"] = self.say_hi 17
- 18
- self.hi_there.pack({"side": "left"}) 19
- 20
- 21
- def __init__(self, master=None): 22
- Frame.__init__(self, master) 23
- self.pack() 24
- self.createWidgets() 25
- 26
-app = Application() 27
-app.mainloop() 28
+from Tkinter import *
+
+class Application(Frame):
+ def say_hi(self):
+ print "hi there, everyone!"
+
+ def createWidgets(self):
+ self.QUIT = Button(self)
+ self.QUIT["text"] = "QUIT"
+ self.QUIT["fg"] = "red"
+ self.QUIT["command"] = self.quit
+
+ self.QUIT.pack({"side": "left"})
+
+ self.hi_there = Button(self)
+ self.hi_there["text"] = "Hello",
+ self.hi_there["command"] = self.say_hi
+
+ self.hi_there.pack({"side": "left"})
+
+ def __init__(self, master=None):
+ Frame.__init__(self, master)
+ self.pack()
+ self.createWidgets()
+
+app = Application()
+app.mainloop()
\end{verbatim}