blob: fcfc6d484f8056b34922a70727d9960363445662 [file] [log] [blame]
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()