]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/tests/test1.py
AVI file playing on Windows is working
[wxWidgets.git] / utils / wxPython / tests / test1.py
index 90e68ee2de0f3818ab60299a294fdc8cc323a3aa..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,11 +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!'
 
+
 #----------------------------------------------------------------------------
-#
+