
March 27, 2022
9:50 a.m.
On 26 Mar 2022, at 20:19, Christopher Barker <pythonchb@gmail.com> wrote:
Also, super() actually calls the method on all the superclasses (but not the same one twice) -- so that right to left thing doesn't matter.
Super() calls the method on only one class. Not all. It finds that one class by using the mro to find the one class. Barry