How can I get the parent(s) object of python class?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Use the following attribute:
From the docs:
Example:
Another example:
|
|||
|
|
|
If you want all the ancestors rather than just the immediate ones, use inspect.getmro:
Usefully, this gives you all ancestor classes in the "method resolution order" -- i.e. the order in which the ancestors will be checked when resolving a method (or, actually, any other attribute -- methods and other attributes live in the same namespace in Python, after all;-). |
|||
|
|
|
New-style classes have an mro method you can call which returns a list of parent classes in method resolution order. |
|||
|
|
|
If you want to ensure they all get called, use |
|||
|