git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15188
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
__revision__ = "$Revision$"[11:-2]
from wxPython.wx import *
__revision__ = "$Revision$"[11:-2]
from wxPython.wx import *
-from PyCrust.crust import CrustFrame
+from crust import CrustFrame
class App(wxApp):
"""PyCrust standalone application."""
class App(wxApp):
"""PyCrust standalone application."""
def OnInit(self):
locals = {'__app__': 'PyCrust Standalone Application'}
self.crustFrame = CrustFrame(locals=locals)
def OnInit(self):
locals = {'__app__': 'PyCrust Standalone Application'}
self.crustFrame = CrustFrame(locals=locals)
if __name__ == '__main__':
main()
if __name__ == '__main__':
main()
# We use this object to get more introspection when run standalone.
application = None
# We use this object to get more introspection when run standalone.
application = None
-from PyCrust import filling
# These are imported just to have something interesting to inspect.
from PyCrust import crust
# These are imported just to have something interesting to inspect.
from PyCrust import crust
if __name__ == '__main__':
main()
if __name__ == '__main__':
main()
__revision__ = "$Revision$"[11:-2]
from wxPython.wx import *
__revision__ = "$Revision$"[11:-2]
from wxPython.wx import *
-from PyCrust.shell import ShellFrame
+from shell import ShellFrame
class App(wxApp):
"""PyShell standalone application."""
class App(wxApp):
"""PyShell standalone application."""
def OnInit(self):
locals = {'__app__': 'PyShell Standalone Application'}
self.shellFrame = ShellFrame(locals=locals)
def OnInit(self):
locals = {'__app__': 'PyShell Standalone Application'}
self.shellFrame = ShellFrame(locals=locals)
if __name__ == '__main__':
main()
if __name__ == '__main__':
main()