2 """PyCrustApp is a python shell and namespace browser application."""
4 __author__
= "Patrick K. O'Brien <pobrien@orbtech.com>"
6 __revision__
= "$Revision$"[11:-2]
8 from wxPython
.wx
import *
9 from PyCrust
.crust
import CrustFrame
13 """PyCrust standalone application."""
16 locals = {'__app__': 'PyCrust Standalone Application'}
17 self
.crustFrame
= CrustFrame(locals=locals)
18 self
.crustFrame
.Show(true
)
19 self
.SetTopWindow(self
.crustFrame
)
20 # Add the application object to the sys module's namespace.
21 # This allows a shell user to do:
23 # >>> sys.application.whatever
25 sys
.application
= self
31 application
.MainLoop()
33 if __name__
== '__main__':