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
"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