Question

When I use Sphinx autodoc to document a class, the values for the attributes are always reported, (as it says it should here, under #437) but always as "= None"

Attribute = None
    Some Documentation

I include it like

.. autoclass:: core.SomeClass
   :members:

And my code looks like

class SomeClass(object):
    def __init__(self):
        self.attribute = "value" #: Some Documentation

Is there a way to either make the "= None" report the real value, or make it disappear?

Was it helpful?

Solution

I am pretty sure this has to do with the fact that your attribute is an instance attribute. It does not get a value until the class is instantiated. Sphinx imports modules in order to inspect them, but it does not instantiate any classes.

So the "real value" is not known by Sphinx, and None is output. I don't think you can make it go away easily (but I suppose anything is possible if you are prepared to patch the Sphinx source code...). If you don't like this, you could document attributes in the docstring of the class instead.

Class attributes that are documented using the same markup scheme (described here) do get their values displayed in the rendered output. But there is no clear indication that makes it easy for the reader to distinguish between class and instance attributes. Maybe Sphinx could be a little more helpful here.

OTHER TIPS

There will be an :annotation: option (see pull-request) in the upcoming version 1.2 of sphinx (and in the second beta).

For autodata/autoattribute you can then force a specific value or suppress it. So in order to print no value for the attribute you would put:

.. autoclass:: core.SomeClass

   .. autoattribute:: attribute
      :annotation:

Currently it only works with autodata/autoattribute directly and not recursively with automodule/autoclass.

For the current version of Sphinx, you can put a monkeypatch in the conf.py of your project that fixes this problem:

from sphinx.ext.autodoc import (
    ClassLevelDocumenter, InstanceAttributeDocumenter)

def iad_add_directive_header(self, sig):
    ClassLevelDocumenter.add_directive_header(self, sig)

InstanceAttributeDocumenter.add_directive_header = iad_add_directive_header

This is discussed in Sphinx issue #2044

This still seems to be an issue. I worked around it with:

class ValueDoc:

    def __init__(self, text):
        self.text = text

    def __repr__(self):
        return self.text

And then define the attribute at the class level like:

#: documentation for foo
foo = ValueDoc('text to show up after =')

I wasn't able to get annotations working for instance attributes. I chose to just hide the attribute values in my theme.

Example html

<dl class="attribute">
  <dt>
    <code class="descName">Attribute</code>
    <em class="property"> = None</em>
  </dt>
</dl>

Theme CSS to hide = None

dd dl.attribute em.property { display: none }
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top