vote up 0 vote down star

Given an object, how do I tell if it's a class, and a subclass of a given class Foo?

e.g.

class Bar(Foo):
  pass

isinstance(Bar(), Foo) # => True

issubclass(Bar, Foo) # <--- how do I do that?
flag

6  
Wow, good thing you did not just try to run this in the Python interpreter, it could have totally fried your PC! ;-) – nikow Nov 3 at 9:20
doh! i feel foolish now :) – Martin DeMello Nov 3 at 9:38
1  
Just a note: Most times people want to check for types, what they really want to do is to check if required methods are implemented... – elzapp Nov 3 at 9:58
elzapp: this is debug code, where i want to do different things if i'm passed a regular class or a class from the ORM – Martin DeMello Nov 3 at 10:15
@elzapp: Note that with the new Abstract Base Classes (ABCs) using issubclass becomes a practical alternative to checking for individual methods. – nikow Nov 3 at 10:24
show 1 more comment

1 Answer

vote up 9 vote down check

It works exactly as one would expect it to work...

class Foo():
    pass

class Bar(Foo):
    pass

class Bar2():
    pass

print issubclass(Bar, Foo)  # True
print issubclass(Bar2, Foo) # False

If you want to know if an instance of a class derived from a given base class, you could use:

bar_instance = Bar()
print issubclass(bar_instance.__class__, Foo)
link|flag

Your Answer

Get an OpenID
or

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