]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/wx/py/PyCrust.py
1 """PyCrust is a python shell and namespace browser application."""
3 # The next two lines, and the other code below that makes use of
4 # ``__main__`` and ``original``, serve the purpose of cleaning up the
5 # main namespace to look as much as possible like the regular Python
8 original
= __main__
.__dict
__.keys()
10 __author__
= "Patrick K. O'Brien <pobrien@orbtech.com>"
12 __revision__
= "$Revision$"[11:-2]
18 """PyCrust standalone application."""
22 wx
.InitAllImageHandlers()
23 from crust
import CrustFrame
24 self
.frame
= CrustFrame()
25 self
.frame
.SetSize((800, 600))
27 self
.SetTopWindow(self
.frame
)
31 The main() function needs to handle being imported, such as with the
32 pycrust script that wxPython installs:
36 from wx.py.PyCrust import main
41 """The main function for the PyCrust program."""
42 # Cleanup the main namespace, leaving the App class.
44 md
= __main__
.__dict
__
48 if key
not in keepers
:
50 # Create an application instance.
52 # Mimic the contents of the standard Python shell's sys.path.
56 # Add the application object to the sys module's namespace.
57 # This allows a shell user to do:
59 # >>> sys.app.whatever
62 # Cleanup the main namespace some more.
63 if md
.has_key('App') and md
['App'] is App
:
65 if md
.has_key('__main__') and md
['__main__'] is __main__
:
67 # Start the wxPython event loop.
70 if __name__
== '__main__':