Files
openide/python/testData/quickdoc/ClassUndocumentedEmptyConstructor.py
Dmitry Cheryasov 86da4b3d72 PY-895: show constructor's quickdoc on constructor call.
Also: links to classes inside method and class quickdocs.
Adds tests for property quickdocs.
2010-09-03 18:10:12 +03:00

14 lines
176 B
Python

class Moo(object):
def __init__(self):
"Doc of Moo()"
pass
class Foo(Moo):
# no doc to inherit
def __init__(self):
# no direct doc
pass
<the_ref>Foo()