I\'m struggling to figure out how to place the documentation for specific members of my Python class in specific sections of my Sphinx documentation, ideally while auto-docu
This works:
.. currentmodule:: my.module .. automethod:: MyClass.funky
You could skip .. currentmodule:: and do it like this:
.. currentmodule::
.. automethod:: my.module.MyClass.funky
A third option:
.. currentmodule:: my.module .. autoclass:: MyClass .. automethod:: funky