Let's say I have a python file with a base class, and a few derived classes:
class Base: pass class Derived1(Base): pass class Derived2(Base): pass Is there a way I can find out the classes that have been derived from Base? Thanks, --Steve -- http://mail.python.org/mailman/listinfo/python-list