Back to articles
June 28, 2024

Python Method Resolution Order .__mro__

Python Method Resolution Order

When dealing with class inheritance, it can be tricky to understand which objects are inherited in which order. Using <classname>.__mro__ returns the order that objects are accessed.

Loading comments...