#----------------------------------------------------------------------------
-## import all of the wxPython GUI package
from wxPython.wx import *
-
#---------------------------------------------------------------------------
## Create a new frame class, derived from the wxPython Frame.
#---------------------------------------------------------------------------
+
# Every wxWindows application must have a class derived from wxApp
class MyApp(wxApp):
#---------------------------------------------------------------------------
-app = MyApp(0) # Create an instance of the application class
+app = MyApp(1) # Create an instance of the application class
app.MainLoop() # Tell it to start processing events
print 'done!'
+
#----------------------------------------------------------------------------
-#
+