X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/578b389d6ec025acc887d4648df20a366f43882d..52f52ebc4e0be6a9899d328b08db9eb14629d219:/wxPython/wx/py/PyShell.py?ds=sidebyside diff --git a/wxPython/wx/py/PyShell.py b/wxPython/wx/py/PyShell.py index 954ebed4c3..54cef8a71e 100644 --- a/wxPython/wx/py/PyShell.py +++ b/wxPython/wx/py/PyShell.py @@ -19,9 +19,8 @@ class App(wx.App): def OnInit(self): import wx wx.InitAllImageHandlers() - locals = __main__.__dict__ from shell import ShellFrame - self.frame = ShellFrame(locals=locals) + self.frame = ShellFrame() self.frame.SetSize((750, 525)) self.frame.Show() self.SetTopWindow(self.frame)