Sphinx - insert argument documentation from parent method
问题 I have some classes that inherit from each other. All classes contain the same method (let us call it mymethod ), whereby the children overwrite the base class method. I want to generate a documentation for mymethod in all classes using sphinx. Suppose mymethod takes an argument myargument . This argument has the same type and meaning for both the base method as well as the inherited method. To minimize redundancies, I would like to write the documentation for myargument only for the base