]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/tests/test1.py
yet another BC++ fix
[wxWidgets.git] / utils / wxPython / tests / test1.py
index d423811d906fa43fa8c60584e21a5cf6854933a9..5cc269d6369fa60483c58a563a3327fd8a8010ab 100644 (file)
 #----------------------------------------------------------------------------
 
 
-## import all of the wxPython GUI package
 from wxPython.wx import *
 
-
 #---------------------------------------------------------------------------
 
 ## Create a new frame class, derived from the wxPython Frame.
@@ -54,6 +52,7 @@ class MyFrame(wxFrame):
 
 #---------------------------------------------------------------------------
 
+
 # Every wxWindows application must have a class derived from wxApp
 class MyApp(wxApp):
 
@@ -73,10 +72,12 @@ 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!'
+
 
 #----------------------------------------------------------------------------
-#
+