X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cf694132f1c28509a9f84377ce8d374bae4177ad..93840b31b96ebfb2c767c6a24e981d0e19dd73f0:/utils/wxPython/tests/test1.py diff --git a/utils/wxPython/tests/test1.py b/utils/wxPython/tests/test1.py index 90e68ee2de..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): @@ -78,6 +77,7 @@ app.MainLoop() # Tell it to start processing events print 'done!' + #---------------------------------------------------------------------------- -# +