]> git.saurik.com Git - wxWidgets.git/blame - wxPython/wx/py/PyFilling.py
Minor cleanup for 2.5. Upped version to 0.9.4. Removed use of decorators.
[wxWidgets.git] / wxPython / wx / py / PyFilling.py
CommitLineData
d14a1e28 1"""PyFilling is a python namespace inspection application."""
1fded56b 2
d14a1e28
RD
3__author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
4__cvsid__ = "$Id$"
5__revision__ = "$Revision$"[11:-2]
6
7# We use this object to get more introspection when run standalone.
8app = None
9
10import filling
11
12# These are imported just to have something interesting to inspect.
13import crust
14import interpreter
15import introspect
16import pseudo
17import shell
18import sys
19import wx
20
21try:
22 True
23except NameError:
24 True = 1==1
25 False = 1==0
26
27
28class App(filling.App):
29 def OnInit(self):
30 filling.App.OnInit(self)
31 self.root = self.fillingFrame.filling.tree.root
32 return True
33
34def main():
35 """Create and run the application."""
36 global app
37 app = App(0)
38 app.fillingFrame.filling.tree.Expand(app.root)
39 app.MainLoop()
1fded56b 40
8b9a4190
RD
41
42if __name__ == '__main__':
43 main()