Files
openide/python/testData/quickdoc/ParamDescriptionInheritedMismatched.py
Mikhail Golubev e0d8445c69 PY-29717 Display description for parameters and return values in sections
docstring_formatter.py is no longer responsible for rendering this table
2018-06-09 15:59:39 +03:00

13 lines
224 B
Python

class Base:
def method(self, foo, bar):
"""
:param foo: description
:param bar: description
"""
pass
class Sub(Base):
def met<the_ref>hod(self, param1, param2):
pass