Updates #2053 [Napoleon] Updates documentation to indicate napoleon_include_special_with_doc = True by default

This commit is contained in:
Rob Ruana 2015-11-17 20:13:55 -08:00
parent 4061e3244d
commit e926ebb263
3 changed files with 16 additions and 14 deletions

View File

@ -241,16 +241,17 @@ class ExampleClass(object):
return True return True
def __special__(self): def __special__(self):
"""By default special members with docstrings are included. """By default special members with docstrings are not included.
Special members are any methods or attributes that start with and Special members are any methods or attributes that start with and
end with a double underscore. Any special member with a docstring end with a double underscore. Any special member with a docstring
will be included in the output. will be included in the output, if
``napoleon_include_special_with_doc`` is set to True.
This behavior can be disabled by changing the following setting in This behavior can be enabled by changing the following setting in
Sphinx's conf.py:: Sphinx's conf.py::
napoleon_include_special_with_doc = False napoleon_include_special_with_doc = True
""" """
pass pass

View File

@ -286,16 +286,17 @@ class ExampleClass(object):
return True return True
def __special__(self): def __special__(self):
"""By default special members with docstrings are included. """By default special members with docstrings are not included.
Special members are any methods or attributes that start with and Special members are any methods or attributes that start with and
end with a double underscore. Any special member with a docstring end with a double underscore. Any special member with a docstring
will be included in the output. will be included in the output, if
``napoleon_include_special_with_doc`` is set to True.
This behavior can be disabled by changing the following setting in This behavior can be enabled by changing the following setting in
Sphinx's conf.py:: Sphinx's conf.py::
napoleon_include_special_with_doc = False napoleon_include_special_with_doc = True
""" """
pass pass

View File

@ -43,7 +43,7 @@ class Config(object):
napoleon_use_rtype = True napoleon_use_rtype = True
.. _Google style: .. _Google style:
http://google-styleguide.googlecode.com/svn/trunk/pyguide.html http://google.github.io/styleguide/pyguide.html
.. _NumPy style: .. _NumPy style:
https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt
@ -239,12 +239,12 @@ def setup(app):
See Also See Also
-------- --------
The Sphinx documentation on `Extensions`_, the `Extension Tutorial`_, and `The Sphinx documentation on Extensions
the `Extension API`_. <http://sphinx-doc.org/extensions.html>`_
.. _Extensions: http://sphinx-doc.org/extensions.html `The Extension Tutorial <http://sphinx-doc.org/extdev/tutorial.html>`_
.. _Extension Tutorial: http://sphinx-doc.org/ext/tutorial.html
.. _Extension API: http://sphinx-doc.org/ext/appapi.html `The Extension API <http://sphinx-doc.org/extdev/appapi.html>`_
""" """
from sphinx.application import Sphinx from sphinx.application import Sphinx