]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/tests/test1.py
removed some unneeded bit of test code
[wxWidgets.git] / utils / wxPython / tests / test1.py
index d423811d906fa43fa8c60584e21a5cf6854933a9..a3d1c1e1b78779754d1f4644ef08b61b4ab03487 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):
 
@@ -76,7 +75,9 @@ class MyApp(wxApp):
 app = MyApp(0)     # Create an instance of the application class
 app.MainLoop()     # Tell it to start processing events
 
+print 'done!'
+
 
 #----------------------------------------------------------------------------
-#
+