]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/wxPython/lib/PyCrust/PyFilling.py
bb2c72b79b990aff8c9dd746812bb4f803941102
2 """PyFilling is a python namespace inspection application."""
4 __author__
= "Patrick K. O'Brien <pobrien@orbtech.com>"
6 __date__
= "August 21, 2001"
7 __version__
= "$Revision$"[11:-2]
9 # We use this object to get more introspection when run standalone.
14 # These are imported just to have something interesting to inspect.
21 from wxPython
import wx
25 """Create and run the application."""
27 application
= filling
.App(0)
28 root
= application
.fillingFrame
.filling
.fillingTree
.root
29 application
.fillingFrame
.filling
.fillingTree
.Expand(root
)
30 application
.MainLoop()
33 if __name__
== '__main__':