How can I tell the autosummary extension not to only list a single class but also all the class\' members?
If I use:
.. autosummary:: MyClass >
You have to type out the class members as well
.. autosummary:: MyClass MyClass.doA MyClass.doB
I like to split it up with titles or rubrics like
.. rubric:: Classes .. autosummary:: MyClass .. rubric:: MyClass Members .. autosummary:: MyClass.doA MyClass.doB