class p1(object): pass
class p2(p1): pass

So p2 is the subclass of p1. Is there a way to find out programmatically that p1 is [one of] the superclass[es] of p2 ?

link|improve this question
feedback

4 Answers

up vote 11 down vote accepted

Yes, there is way. You can use a issubclass function.

As follows:

class p1(object):pass
class p2(p1):pass

issubclass(p2, p1)
link|improve this answer
feedback

Depending on what you're trying to do, the "mro" method can also be useful.

link|improve this answer
feedback

using <class>.__bases__ seems to be what you're looking for...

>>> class p1(object): pass
>>> class p2(p1): pass
>>> p2.__bases__
(<class '__main__.p1'>,)
link|improve this answer
3  
-1: issubclass is certainly the much better solution. – nikow Dec 21 '09 at 10:51
1  
feedback

I think you meant to use "class" instead of "def".. :) Anyway, try p2.__bases__

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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