1
0
forked from VimPlug/jedi

Test and preparations for better call signatures with builtins, see #515.

This commit is contained in:
Dave Halter
2015-04-10 03:05:38 +02:00
parent 1e623509cd
commit 74779f1a5d
3 changed files with 15 additions and 1 deletions

View File

@@ -326,7 +326,7 @@ class BaseDefinition(object):
raise AttributeError()
followed = followed[0] # only check the first one.
if followed.isinstance(er.Function):
if followed.type == 'funcdef':
if isinstance(followed, er.InstanceElement):
params = followed.params[1:]
else: