Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to override constructor parameters in Sphinx with autodoc?

Let's say I have a class like this:

class MyClass(object):
    """ Summary docs for my class.

    Extended documentation for my class.
    """

    def __init__(self, *args):
        self.values = np.asarray(args)

If I use Sphinx with the autodoc extension to document this class like so:

.. automodule:: mymodule
   :members:

...the constructor signature appears as MyClass(*args). I would rather override this and document it as, say, MyClass(first, second, third).

If this were a function, I could override the signature in the first line of the docstring. But that trick doesn't seem to work on a class docstring. So how can I override the constructor signature?

like image 741
detly Avatar asked Dec 09 '12 08:12

detly


1 Answers

I think that the best option for you is to do something like this:

.. automodule:: mymodule
    :members:
    :exclude-members: MyClass

    .. autoclass:: MyClass(first, second, third)

MyClass will have params overwritten and other members of mymodule will be autodocumented. You need to exclude MyClass using :exclude-members: because it will be included twice. I think it's the simplest solution at the moment.

like image 132
prmtl Avatar answered Sep 21 '22 12:09

prmtl