mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
19 lines
160 B
Python
19 lines
160 B
Python
class Foo:
|
|
pass
|
|
|
|
|
|
class DocHere(Foo):
|
|
pass
|
|
|
|
|
|
class DocLowerLevel(DocHere):
|
|
pass
|
|
|
|
|
|
class DocMainLevel(Foo):
|
|
pass
|
|
|
|
|
|
class Alice(object):
|
|
pass
|