How to find out what a Class inherits and implements?
Hi all, this is more of a python question, but was wondering this while working with zope. When reading a source of a Product, is there any way of finding out easy -- what are the actual classes that it inherits and imports. -huima
On Thu, Jan 17, 2002 at 01:23:16AM +0200, Heimo Laukkanen wrote:
Hi all,
this is more of a python question, but was wondering this while working with zope. When reading a source of a Product, is there any way of finding out easy -- what are the actual classes that it inherits and imports.
docfinder can do this at runtime. Sorry, I have no URL. -- Open Source Software Solutions Thomas Guettler <guettli@thomas-guettler.de> http://www.thomas-guettler.de
Heimo Laukkanen writes:
this is more of a python question, but was wondering this while working with zope. When reading a source of a Product, is there any way of finding out easy -- what are the actual classes that it inherits and imports. Options:
You use Python's documentation utility: pydoc You use DocFinder <http://www.dieter.handshake.de/pyprojects/zope> Dieter
participants (3)
-
Dieter Maurer -
Heimo Laukkanen -
Thomas Guettler