sphinx/tests/roots/test-inheritance/dummy/test_nested.py

13 lines
116 B
Python
Raw Normal View History

2020-02-11 10:39:13 -06:00
"""
Test with nested classes.
"""
class A(object):
class B(object):
pass
class C(A.B):
pass