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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|||||
|
|
See the
|
||||
|
|
|
||||
|
|
|
you can use the bases tuple of the class object:
The tuple returned by bases has all its base classes. Hope it helps! |
|||
|
|
typewould be the better term)isinstancewon't work ... either you meanissubclassor you want to take a instance ;-p – Jochen Ritzel Sep 9 '09 at 20:21