I am attempting to use Sphinx to document my Python class. I do so using autodoc:
.. autoclass:: Bus :members:
While it correctly fetche
Added in version 1.1 you can now override the method signature by providing a custom value in the first line of your docstring.
http://sphinx-doc.org/ext/autodoc.html#confval-autodoc_docstring_signature
@checkStale def open(self): """ open() Some docs. """ # Code