]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/wxPython/lib/PyCrust/PyFillingApp.py
61d3db5cb0978554fa08eef64cade5729bf87519
2 """PyFillingApp is a python namespace inspection application."""
4 __author__
= "Patrick K. O'Brien <pobrien@orbtech.com>"
6 __version__
= "$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.
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__':