#----------------------------------------------------------------------------
-## 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):
print 'done!'
+
#----------------------------------------------------------------------------
-#
+