Re: [Tutor] replacement for .mainloop() in Tk

2007-09-03 Thread Kent Johnson
Trey Keown wrote: > Okay, I'm making a program that turns xml code into python code. > > And here would be the corresponding output (well, what I've got so far...) > > > from Tkinter import * > import tkFileDialog > ## > self = Tk() > self.title("Example Windo

Re: [Tutor] replacement for .mainloop() in Tk

2007-09-03 Thread Alan Gauld
"Trey Keown" <[EMAIL PROTECTED]> wrote > > from Tkinter import * > import tkFileDialog > ## > self = Tk() Using self here is a little bit unconventional sinmce its not in a class. That could confuse some readers. > self.title("Example Window Title") > self.i