1
0
forked from VimPlug/jedi

Add a comment

This commit is contained in:
Colin
2013-12-21 14:23:41 +01:00
parent c7d4c0453a
commit 478140caab

View File

@@ -352,6 +352,7 @@ def _parse_function_doc(func):
# get full string, parse round parentheses: def func(a, (b,c)) # get full string, parse round parentheses: def func(a, (b,c))
try: try:
# unbound methods such as pyqtSignals have no __name__
if not hasattr(func, "__name__"): if not hasattr(func, "__name__"):
return '', 'pass' return '', 'pass'
count = 0 count = 0