]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/wx/py/PyShell.py
Script updates
[wxWidgets.git] / wxPython / wx / py / PyShell.py
index 39f3c103f95e51d6a5ee3d5df036f1ebbb56d26d..54cef8a71ea79c971a13a63850d98f0a04d80e1f 100644 (file)
@@ -13,22 +13,14 @@ __revision__ = "$Revision$"[11:-2]
 
 import wx
 
-try:
-    True
-except NameError:
-    True = 1==1
-    False = 1==0
-
-
 class App(wx.App):
     """PyShell standalone application."""
 
     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)