sphinx/tests/roots/test-inheritance/dummy/test_nested.py
2020-02-12 01:39:13 +09:00

13 lines
116 B
Python

"""
Test with nested classes.
"""
class A(object):
class B(object):
pass
class C(A.B):
pass