forked from VimPlug/jedi
A property can raise an Exception, therefore the interpreter completion should check for those exceptions, fixes #538.
This commit is contained in:
@@ -618,7 +618,7 @@ class Interpreter(Script):
|
||||
for n in old:
|
||||
try:
|
||||
namespaces.append(getattr(n, p))
|
||||
except AttributeError:
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
completion_names = []
|
||||
|
||||
Reference in New Issue
Block a user