blob: fcfc6d484f8056b34922a70727d9960363445662 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class Moo(object):
2 def __init__(self):
3 "Doc of Moo()"
4 pass
5
6
7class Foo(Moo):
8 # no doc to inherit
9 def __init__(self):
10 # no direct doc
11 pass
12
13<the_ref>Foo()