#!/usr/bin/env python
"""PyFilling is a python namespace inspection application."""

__author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
__cvsid__ = "$Id$"
__date__ = "August 21, 2001"
__version__ = "$Revision$"[11:-2]

# We use this object to get more introspection when run standalone.
application = None

import filling

# These are imported just to have something interesting to inspect.
import crust
import interpreter
import introspect
import pseudo
import shell
import sys
from wxPython import wx


def main():
    """Create and run the application."""
    global application
    application = filling.App(0)
    root = application.fillingFrame.filling.fillingTree.root
    application.fillingFrame.filling.fillingTree.Expand(root)
    application.MainLoop()


if __name__ == '__main__':
    main()

