1
0
forked from VimPlug/jedi

Fix complex param parsing in docstrings.

This commit is contained in:
Yakov Borevich
2012-12-28 09:21:06 +04:00
parent db4b09e05e
commit c7cf7b6dc7
2 changed files with 18 additions and 12 deletions

View File

@@ -4,12 +4,15 @@ def f(a, b):
""" asdfasdf
:param a: blablabla
:type a: str
:type b: (str, int)
:rtype: dict
"""
#? str()
a
#?
b
#? str()
b[0]
#? int()
b[1]
#? dict()
f()
@@ -34,12 +37,17 @@ def e(a, b):
""" asdfasdf
@type a: str
@param a: blablabla
@type b: (str, int)
@param b: blablah
@rtype: list
"""
#? str()
a
#?
b
#? str()
b[0]
#? int()
b[1]
#? list()
e()