vote up 2 vote down star
1

Given a class Foo (whether it is a new-style class or not), how do you generate all the base classes - anywhere in the inheritance hierarchy - it issubclass of?

flag

59% accept rate
1  
Given a class object (type would be the better term) isinstance won't work ... either you mean issubclass or you want to take a instance ;-p – THC4k Sep 9 at 20:21
Thanks; I edited the post. – Sridhar Ratnakumar Sep 9 at 20:39

4 Answers

vote up 3 vote down check

inspect.getmro(cls) works for both new and old style classes and returns the same as NewClass.mro(): a list of the class and all its base classes.

>>> class A(object):
>>>     pass
>>>
>>> class B(A):
>>>     pass
>>>
>>> import inspect
>>> inspect.getmro(B)
(<class '__main__.B'>, <class '__main__.A'>, <type 'object'>)
link|flag
Well done: docs.python.org/library/… – Sridhar Ratnakumar Sep 9 at 20:44
vote up 5 vote down

See the __bases__ property available on a python class, which contains a tuple of the bases classes:

>>> def classlookup(cls):
...     c = list(cls.__bases__)
...     for base in c:
...         c.extend(classlookup(base))
...     return c
...
>>> class A: pass
...
>>> class B(A): pass
...
>>> class C(object, B): pass
...
>>> classlookup(C)
[<type 'object'>, <class __main__.B at 0x00AB7300>, <class __main__.A at 0x00A6D630>]
link|flag
This may introduce duplicates. And this is why the documentation for getmro explicitly says "No class appears more than once in this tuple"? – Sridhar Ratnakumar Sep 9 at 20:45
vote up 6 vote down

inspect.getclasstree() will create a nested list of classes and their bases.

link|flag
vote up 1 vote down

you can use the bases tuple of the class object:

class A(object, B, C):
    def __init__(self):
       pass
print A.__bases__

The tuple returned by bases has all its base classes.

Hope it helps!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.