From: Robin Dunn Date: Fri, 22 Dec 2006 23:50:51 +0000 (+0000) Subject: put wx in the shell's namespace too X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c306c1e0f6c9e675aba8206f56cbf261d2506e41 put wx in the shell's namespace too git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44033 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wx/lib/mixins/inspect.py b/wxPython/wx/lib/mixins/inspect.py index 6e6951a7cd..fc114c597a 100644 --- a/wxPython/wx/lib/mixins/inspect.py +++ b/wxPython/wx/lib/mixins/inspect.py @@ -13,6 +13,7 @@ # NOTE: This class is based on ideas sent to the wxPython-users # mail-list by Dan Eloff. +import wx import wx.py class InspectionMixin(object): @@ -54,6 +55,7 @@ class InspectionMixin(object): self._crust = wx.py.crust.CrustFrame(self.GetTopWindow(), pos = self._pos, size = self._size) self._crust.shell.interp.locals['app'] = self + self._crust.shell.interp.locals['wx'] = wx win = wx.FindWindowAtPointer() self._crust.shell.interp.locals['win'] = win self._crust.Show()