restructuredtext - List subclasses in Sphinx using autodoc -



restructuredtext - List subclasses in Sphinx using autodoc -

is there autodoc-directive list subclasses of given class?

if have next python-code:

class base(object): pass class a(base): pass class b(base): pass

is there way generate output like:

classes implementing base: a, b

using sphinx, autodoc , re-structured text. (like :show-inheritance: backwards). like:

.. autoclass:: base of operations :the-command-i-am-missing:

python-sphinx restructuredtext autodoc

Comments

Popular posts from this blog

assembly - What is the addressing mode for ld, add, and rjmp instructions? -

vowpalwabbit - Interpreting Vowpal Wabbit results: Why are some lines appended by "h"? -

Is there a way to convert an HTML page styled with Bootstrap CSS into email-compatible html? -