1 2 3 4 5 6 7 8 9 10 11
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 self.attr4 = None