X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d14a1e28567de23c586bc80017073d0c39f8d18f..ada88e3efe9048f4d660eb657b0e44bd463b0fba:/wxPython/wx/py/PyWrap.py diff --git a/wxPython/wx/py/PyWrap.py b/wxPython/wx/py/PyWrap.py index 4911be1ae1..333ad8d064 100644 --- a/wxPython/wx/py/PyWrap.py +++ b/wxPython/wx/py/PyWrap.py @@ -8,24 +8,16 @@ __revision__ = "$Revision$"[11:-2] import os import sys import wx -from crust import CrustFrame as Frame - -try: - True -except NameError: - True = 1==1 - False = 1==0 - +from wx.py.crust import CrustFrame def wrap(app): wx.InitAllImageHandlers() - frame = Frame() + frame = CrustFrame() frame.SetSize((750, 525)) frame.Show(True) frame.shell.interp.locals['app'] = app app.MainLoop() - def main(modulename=None): sys.path.insert(0, os.curdir) if not modulename: @@ -46,11 +38,10 @@ def main(modulename=None): except (NameError, TypeError): pass if App is None: - print "No App class found." + print "No App class was found." raise SystemExit app = App() wrap(app) - if __name__ == '__main__': main()