summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-ext-autodoc/target/instance_variable.py
blob: 1d393bc87432bd2740c8072fb041e61885f57a29 (plain)
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