1 ответ
0
I think you shouldn't worry about this kind of thing yet.
However, if you really want to know, super() calls the next class in the line of inheritance, based on the method resolution order (__mro__) attribute of the class who FIRST called super()
You can learn more watching Raymond Hettinger's talk "super() made super" at PyCon2015 (I don't have a link, right now)
Hope it helped.