blob: ae86d1edb1ec6f23ddde651ed3943b88eaa336e7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
class Foo:
def __init__(self):
self.attr1 = None #: docstring foo
self.attr2 = None #: docstring foo
class Bar(Foo):
def __init__(self):
self.attr2 = None #: docstring bar
self.attr3 = None #: docstring bar
|