]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/template.py
Added export decl
[wxWidgets.git] / wxPython / demo / template.py
index 4ccfcd4c4bf2721cad14ea769eaf7fa2e6409f75..8be058bfeee303ff57efa4c847f07f9b6b39ab23 100644 (file)
@@ -1,12 +1,12 @@
 
-from wxPython.wx import *
+import wx                  # This module uses the new wx namespace
 
 #----------------------------------------------------------------------
 
-class TestPanel(wxPanel):
+class TestPanel(wx.Panel):
     def __init__(self, parent, log):
         self.log = log
-        wxPanel.__init__(self, parent, -1)
+        wx.Panel.__init__(self, parent, -1)
 
 #----------------------------------------------------------------------
 
@@ -23,3 +23,11 @@ overview = """<html><body>
 
 </body></html>
 """
+
+
+
+if __name__ == '__main__':
+    import sys,os
+    import run
+    run.main(['', os.path.basename(sys.argv[0])])
+