Definition at line 77 of file Gui.py.
00077 : 00078 import async 00079 tkroot = Tk() 00080 tkapp = Main(async.AsyncInterface(app),master=tkroot) 00081 tkapp.after(0, tkapp.drain) 00082 tkapp.mainloop() 00083 tkroot.destroy() 00084 00085 00086 00087