git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73843 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2013-04-24 02:42:19 +00:00
parent f8fc11f5de
commit a5a76820ca
2 changed files with 3 additions and 4 deletions

View File

@@ -19,12 +19,10 @@ class Frame(wx.Frame):
def OnClose(self, event):
self.Destroy()
app = wx.App()
top = Frame("wxpTest")
top.Show()
import wx.lib.inspection
wx.lib.inspection.InspectionTool().Show()
app.MainLoop()