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?
|
1
|
|
|||
|
|
|
|||
|
|
|
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 – THC4k Sep 9 at 20:21