Files
openide/python/testData/quickdoc/SingleLetterInheritedDocstring.py
Mikhail Golubev 56c6c787ec Remove the logic that prevented one-letter docstrings from being rendered
We don't have it elsewhere, thus, there is little sense in keeping it
specifically for inherited documentation.
2018-08-13 14:58:36 +03:00

8 lines
116 B
Python

class Base:
def method(self):
"""D"""
class MyClass(Base):
def met<the_ref>hod(self):
pass