1
0
forked from VimPlug/jedi

Fix for #357/#331

This commit is contained in:
ColinDuquesnoy
2013-12-20 13:48:49 +01:00
parent 3a8692e730
commit 3da4ff1f89

View File

@@ -352,6 +352,8 @@ def _parse_function_doc(func):
# get full string, parse round parentheses: def func(a, (b,c))
try:
if not hasattr(func, "__name__"):
return '', 'pass'
count = 0
debug.dbg(func, func.__name__, doc)
start = doc.index('(')