1
0
forked from VimPlug/jedi

Undo finding signatures for everything and only do it for stubs and non-statements for when used in docstrings

This commit is contained in:
Dave Halter
2020-01-04 16:00:07 +01:00
parent 088fca2f8e
commit aca2a5a409
4 changed files with 14 additions and 10 deletions

View File

@@ -76,7 +76,7 @@ def test_multiple_docstrings(Script):
x = func
'''Docstring of `x`.'''
x""").help()
assert d.docstring() == 'func()\n\nDocstring of `x`.'
assert d.docstring() == 'Docstring of `x`.'
def test_completion(Script):