mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
Also: links to classes inside method and class quickdocs. Adds tests for property quickdocs.
14 lines
176 B
Python
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()
|