Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_nested.py « dummy « test-inheritance « roots « tests - github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 89289fe44fc74413ef4dcd0d5be2d4fa43e7c11e (plain)
1
2
3
4
5
6
7
8
9
10
11
"""Test with nested classes.
"""


class A(object):
    class B(object):
        pass


class C(A.B):
    pass