X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d351525a9b21807a04810c96d24c657a857be830..601c78c6b6eebdf5b280b8439924a5a4b3c598b1:/wxPython/wx/py/shell.py diff --git a/wxPython/wx/py/shell.py b/wxPython/wx/py/shell.py index 722b59649a..2232fd59b0 100644 --- a/wxPython/wx/py/shell.py +++ b/wxPython/wx/py/shell.py @@ -25,12 +25,6 @@ from pseudo import PseudoFileOut from pseudo import PseudoFileErr from version import VERSION -try: - True -except NameError: - True = 1==1 - False = 1==0 - sys.ps3 = '<-- ' # Input prompt. NAVKEYS = (wx.WXK_END, wx.WXK_LEFT, wx.WXK_RIGHT, @@ -185,7 +179,8 @@ class Shell(editwindow.EditWindow): editwindow.EditWindow.__init__(self, parent, id, pos, size, style) self.wrap() if locals is None: - locals = {} + import __main__ + locals = __main__.__dict__ # Grab these so they can be restored by self.redirect* methods. self.stdin = sys.stdin self.stdout = sys.stdout