1
0
forked from VimPlug/jedi

fix a few last standing issues with integration tests. ok after running tests with tox i see that they are not the last issues...

This commit is contained in:
Dave Halter
2014-01-12 00:33:13 +01:00
parent 1765fadf73
commit 4006b231d3
5 changed files with 11 additions and 7 deletions

View File

@@ -143,7 +143,7 @@ class Script(object):
if not dot:
# add named params
for call_def in self.call_signatures():
if not call_def.module.is_builtin():
if not isinstance(call_def.module, compiled.PyObject):
for p in call_def.params:
completions.append((p.get_name(), p))