Files
openide/python/testData/quickdoc/AncestorClassDocstringForConstructor.py
Mikhail Golubev ca372eb8ca PY-29717 Fix docstring inheritance for constructors and local classes
Also, add more tests on this feature in general.
2018-06-09 15:59:37 +03:00

7 lines
103 B
Python

class Base:
"""Class docstring."""
class Sub(Base):
def __in<the_ref>it__(self):
pass