Hello,
odoo has a good support for different kinds of inheritance, but what is the reason about it's implementation?
I really don't know how can I call 'super' in a class that inherits, in Python's terms, from Model, and if this class has a "_inherit = 'my.parent.model'", the super actually calls the class of 'my.parent.model' and not Model. How does this work out?
I went some time through Model class code and its parents and saw some code that maybe manipulate the class inheritance, but is not clear to me.
Thanks