sphinx/tests/roots/test-ext-inheritance_diagram/test.py
Albert Y. Shih 3e30fa36a2
Fix missing and broken links in inheritance diagrams (#10614)
Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
2023-08-08 20:32:58 +01:00

19 lines
160 B
Python

class Foo:
pass
class DocHere(Foo):
pass
class DocLowerLevel(DocHere):
pass
class DocMainLevel(Foo):
pass
class Alice(object):
pass