class Parent: """ :ivar attr: parent attr doc """ def __init__(self): self.attr = 0 class Child(Parent): """ :ivar attr: child attr doc """