I don't think using __getattribute__ to intercept method calls is compatible with python tools that rely on introspection, like tab completion in IPython or documentation generation tools like Sphinx's autodoc. In a sense, part of the API is effectively hidden. For this reason I tend to avoid delegation using __getattribute__ in my own projects.
Darren _______________________________________________ PySide mailing list [email protected] http://lists.openbossa.org/listinfo/pyside
