I came across inheritance of ODOO.
Here each module inherit other where _inherit use that's fine we understood my that name new fields are create in that model.
But in new inherited class how it call parent class or original class methods.
Like in stock module, product model inhirited and new methods added and executed, also methods define in product can be call from stock i product model's method.
How this all work ? Please expert shall this features hows works ?
Python default overwrite class declaration, then how its works here ? Like product and stock module have class product declaration, where it do not overwrite previously declared class method and features ? How it keeps methods declared in other modules ?