]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/wxPython/lib/PyCrust/PyFillingApp.py
efdcd6a6de4acbc8aee35c0887e30b3ad38910f2
2 """PyFillingApp is a python namespace inspection application."""
4 __author__
= "Patrick K. O'Brien <pobrien@orbtech.com>"
6 __revision__
= "$Revision$"[11:-2]
8 # We use this object to get more introspection when run standalone.
11 from PyCrust
import filling
13 # These are imported just to have something interesting to inspect.
14 from PyCrust
import crust
15 from PyCrust
import interpreter
16 from PyCrust
import introspect
17 from PyCrust
import pseudo
18 from PyCrust
import shell
20 from wxPython
import wx
24 """Create and run the application."""
26 application
= filling
.App(0)
27 root
= application
.fillingFrame
.filling
.fillingTree
.root
28 application
.fillingFrame
.filling
.fillingTree
.Expand(root
)
29 application
.MainLoop()
32 if __name__
== '__main__':