]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/wxPython/lib/PyCrust/PyFillingApp.py
b204210a8002c9f1df6c513845d43231bd461f34
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.
13 # These are imported just to have something interesting to inspect.
21 from wxPython
import wx
30 class App(filling
.App
):
32 filling
.App
.OnInit(self
)
33 self
.root
= self
.fillingFrame
.filling
.tree
.root
37 """Create and run the application."""
40 app
.fillingFrame
.filling
.tree
.Expand(app
.root
)
44 if __name__
== '__main__':