__revision__ = "$Revision$"[11:-2]
from wxPython.wx import *
-from PyCrust.crust import CrustFrame
+from crust import CrustFrame
class App(wxApp):
"""PyCrust standalone application."""
-
+
def OnInit(self):
locals = {'__app__': 'PyCrust Standalone Application'}
self.crustFrame = CrustFrame(locals=locals)
if __name__ == '__main__':
main()
-
+
# We use this object to get more introspection when run standalone.
application = None
-from PyCrust import filling
+import filling
# These are imported just to have something interesting to inspect.
from PyCrust import crust
if __name__ == '__main__':
main()
-
+
__revision__ = "$Revision$"[11:-2]
from wxPython.wx import *
-from PyCrust.shell import ShellFrame
+from shell import ShellFrame
class App(wxApp):
"""PyShell standalone application."""
-
+
def OnInit(self):
locals = {'__app__': 'PyShell Standalone Application'}
self.shellFrame = ShellFrame(locals=locals)
if __name__ == '__main__':
main()
-
-
+
+