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 ?
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 ? | ||||
|
feedback
|
|
Yes, there is way. You can use a issubclass function. As follows:
| |||
|
feedback
|
|
Depending on what you're trying to do, the "mro" method can also be useful. | |||
|
feedback
|
|
using <class>.__bases__ seems to be what you're looking for...
| |||||||||
feedback
|
|
I think you meant to use "class" instead of "def".. :) Anyway, try | |||
|
feedback
|