Skip to content

BUG: Defer to autodoc for signatures #221

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jun 27, 2020
Merged
18 changes: 18 additions & 0 deletions doc/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,21 @@ Additional notes

- https://github.com/numpy/numpydoc/issues/215#issuecomment-568261611
- https://github.com/readthedocs/sphinx_rtd_theme/pull/838

1.1.0
-----

Fixed bugs
~~~~~~~~~~

- BUG: Defer to autodoc for signatures `#221 <https://github.com/numpy/numpydoc/pull/221>`__ (`thequackdaddy <https://github.com/thequackdaddy>`__)

Closed issues
~~~~~~~~~~~~~

- self included in list of params for method `#220 <https://github.com/numpy/numpydoc/issues/220>`__

Additional notes
~~~~~~~~~~~~~~~~

- Due to merging of `#221 <https://github.com/numpy/numpydoc/pull/221>`__, self and cls no longer will appear in method signatures.
17 changes: 0 additions & 17 deletions numpydoc/docscrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,23 +566,6 @@ def __init__(self, func, role='func', doc=None, config={}):
doc = inspect.getdoc(func) or ''
NumpyDocString.__init__(self, doc, config)

if not self['Signature'] and func is not None:
func, func_name = self.get_func()
try:
try:
signature = str(inspect.signature(func))
except (AttributeError, ValueError):
# try to read signature, backward compat for older Python
if sys.version_info[0] >= 3:
argspec = inspect.getfullargspec(func)
else:
argspec = inspect.getargspec(func)
signature = inspect.formatargspec(*argspec)
signature = '%s%s' % (func_name, signature)
except TypeError:
signature = '%s()' % func_name
self['Signature'] = signature

def get_func(self):
func_name = getattr(self._f, '__name__', self.__class__.__name__)
if inspect.isclass(self._f):
Expand Down
15 changes: 14 additions & 1 deletion numpydoc/numpydoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,25 @@ def mangle_signature(app, what, name, obj, options, sig, retann):
if not hasattr(obj, '__doc__'):
return
doc = get_doc_object(obj, config={'show_class_members': False})
sig = doc['Signature'] or getattr(obj, '__text_signature__', None)
sig = (doc['Signature']
or _clean_text_signature(getattr(obj, '__text_signature__', None)))
if sig:
sig = re.sub("^[^(]*", "", sig)
return sig, ''


def _clean_text_signature(sig):
if sig is None:
return None
start_pattern = re.compile(r"^[^(]*\(")
start, end = start_pattern.search(sig).span()
start_sig = sig[start:end]
sig = sig[end:-1]
sig = re.sub(r'^\$(self|module|type)(,\s|$)','' , sig, count=1)
sig = re.sub(r'(^|(?<=,\s))/,\s\*', '*', sig, count=1)
return start_sig + sig + ')'


def setup(app, get_doc_object_=get_doc_object):
if not hasattr(app, 'add_config_value'):
return # probably called by nose, better bail out
Expand Down
2 changes: 1 addition & 1 deletion numpydoc/tests/test_docscrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ def my_func(a, b, **kwargs):
pass

fdoc = FunctionDoc(func=my_func)
assert fdoc['Signature'] == 'my_func(a, b, **kwargs)'
assert fdoc['Signature'] == ''


doc4 = NumpyDocString(
Expand Down
3 changes: 2 additions & 1 deletion numpydoc/tests/test_full.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,13 @@ def test_MyClass(sphinx_app):
html = fid.read()
# ensure that no autodoc weirdness ($) occurs
assert '$self' not in html
assert '/,' not in html
assert '__init__' in html # inherited
# escaped * chars should no longer be preceded by \'s,
# if we see a \* in the output we know it's incorrect:
assert r'\*' not in html
# "self" should not be in the parameter list for the class:
assert 'self,' in html # XXX should be "not in", bug!
assert 'self,' not in html
# check xref was embedded properly (dict should link using xref):
assert 'stdtypes.html#dict' in html

Expand Down
32 changes: 30 additions & 2 deletions numpydoc/tests/test_numpydoc.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- encoding:utf-8 -*-
from copy import deepcopy
from numpydoc.numpydoc import mangle_docstrings
from numpydoc.numpydoc import mangle_docstrings, _clean_text_signature
from numpydoc.xref import DEFAULT_LINKS
from sphinx.ext.autodoc import ALL

Expand Down Expand Up @@ -36,7 +36,7 @@ class MockApp():


def test_mangle_docstrings():
s ='''
s = '''
A top section before

.. autoclass:: str
Expand Down Expand Up @@ -64,6 +64,34 @@ def test_mangle_docstrings():
assert 'upper' not in [x.strip() for x in lines]


def test_clean_text_signature():
assert _clean_text_signature(None) is None
assert _clean_text_signature('func($self)') == 'func()'
assert (_clean_text_signature('func($self, *args, **kwargs)')
== 'func(*args, **kwargs)')
assert _clean_text_signature('($self)') == '()'
assert _clean_text_signature('()') == '()'
assert _clean_text_signature('func()') == 'func()'
assert (_clean_text_signature('func($self, /, *args, **kwargs)')
== 'func(*args, **kwargs)')
assert (_clean_text_signature('func($self, other, /, *args, **kwargs)')
== 'func(other, *args, **kwargs)')
assert _clean_text_signature('($module)') == '()'
assert _clean_text_signature('func($type)') == 'func()'
assert (_clean_text_signature('func($self, foo="hello world")')
== 'func(foo="hello world")')
assert (_clean_text_signature("func($self, foo='hello world')")
== "func(foo='hello world')")
assert (_clean_text_signature('func(foo="hello world")')
== 'func(foo="hello world")')
assert (_clean_text_signature('func(foo="$self")')
== 'func(foo="$self")')
assert (_clean_text_signature('func($self, foo="$self")')
== 'func(foo="$self")')
assert _clean_text_signature('func(self, other)') == 'func(self, other)'
assert _clean_text_signature('func($self, *args)') == 'func(*args)'


if __name__ == "__main__":
import pytest
pytest.main()