Search notes:

Python: method resolution order

The method resolution order is an ordered list (actually: tuple) of types. This list is used to determine on which type a method is called when invoked on an object.

See also

super()
__mro__
method

Index