]> git.saurik.com Git - wxWidgets.git/blob - wxPython/wxPython/lib/PyCrust/PyFilling.py
bb2c72b79b990aff8c9dd746812bb4f803941102
[wxWidgets.git] / wxPython / wxPython / lib / PyCrust / PyFilling.py
1 #!/usr/bin/env python
2 """PyFilling is a python namespace inspection application."""
3
4 __author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
5 __cvsid__ = "$Id$"
6 __date__ = "August 21, 2001"
7 __version__ = "$Revision$"[11:-2]
8
9 # We use this object to get more introspection when run standalone.
10 application = None
11
12 import filling
13
14 # These are imported just to have something interesting to inspect.
15 import crust
16 import interpreter
17 import introspect
18 import pseudo
19 import shell
20 import sys
21 from wxPython import wx
22
23
24 def main():
25 """Create and run the application."""
26 global application
27 application = filling.App(0)
28 root = application.fillingFrame.filling.fillingTree.root
29 application.fillingFrame.filling.fillingTree.Expand(root)
30 application.MainLoop()
31
32
33 if __name__ == '__main__':
34 main()
35