summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-ext-autodoc/target/canonical/original.py
blob: 42049b2165e598c9ba7b364ff9eabfd5ffa8ee28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Foo:
    """docstring"""

    def meth(self):
        """docstring"""


def bar():
    class Bar:
        """docstring"""

    return Bar


Bar = bar()