]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/pyTree.py
Applied patch #403856 (utilscmn.cpp should translate special key names)
[wxWidgets.git] / wxPython / demo / pyTree.py
index 47283527f113682690a5eef78742a88f28e23ea2..4af73e3c666d34dd8ece7890e83182c64b699883 100644 (file)
@@ -24,7 +24,7 @@ beautifully documented...
 """
 
 from wxPython import wx
 """
 
 from wxPython import wx
-import string # Don't use it, but it's fun expanding :-)
+import sys, string # Don't use it, but it's fun expanding :-)
 
 #----------------------------------------------------------------------
 
 
 #----------------------------------------------------------------------
 
@@ -161,7 +161,8 @@ def runTest(frame, nb, log):
     This method is used by the wxPython Demo Framework for integrating
     this demo with the rest.
     """
     This method is used by the wxPython Demo Framework for integrating
     this demo with the rest.
     """
-    thisModule = __import__(__name__, globals())
+    #thisModule = __import__(__name__, globals())
+    thisModule = sys.modules[__name__]
     win = wx.wxFrame(frame, -1, "PyTreeItemData Test")
     split = wx.wxSplitterWindow(win, -1)
     tree = pyTree(split, -1, thisModule)
     win = wx.wxFrame(frame, -1, "PyTreeItemData Test")
     split = wx.wxSplitterWindow(win, -1)
     tree = pyTree(split, -1, thisModule)