Is there an autodoc directive that will list all subclasses of a given class?
If I have the following Python code:
class Base(object): pass class A(Base): pass class B(Base): pass
Is there a way to generate output like:
Classes implementing Base: A, B
Using Sphinx, Autodoc, and Re-Structured text. (For example: show-inheritance: but back). Something like:
.. autoclass:: Base :THE-COMMAND-I-AM-MISSING:
restructuredtext python-sphinx autodoc
milnet
source share