1
0
forked from VimPlug/jedi

Few docstring fixes.

This commit is contained in:
Dave Halter
2014-12-11 15:32:45 +01:00
parent 003d1249c5
commit 6afc5ccca5
4 changed files with 11 additions and 10 deletions

View File

@@ -236,7 +236,7 @@ class BaseDefinition(object):
>>> script = Script(source, 1, len('def f'), 'example.py')
>>> doc = script.goto_definitions()[0].docstring()
>>> print(doc)
f(a, b = 1)
f(a, b=1)
<BLANKLINE>
Document for function f.