X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/af309447ff8413abd2fa5e9cc780fcef1c891f87..93840b31b96ebfb2c767c6a24e981d0e19dd73f0:/utils/wxPython/tests/test1.py diff --git a/utils/wxPython/tests/test1.py b/utils/wxPython/tests/test1.py index d423811d90..a3d1c1e1b7 100644 --- a/utils/wxPython/tests/test1.py +++ b/utils/wxPython/tests/test1.py @@ -12,10 +12,8 @@ #---------------------------------------------------------------------------- -## 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!' + #---------------------------------------------------------------------------- -# +