1
0
forked from VimPlug/jedi

a few other small changes before changing compiled Instance execution to the representation

This commit is contained in:
Dave Halter
2014-01-11 01:19:09 +01:00
parent 32e39ef4ca
commit 8337f77886
2 changed files with 14 additions and 9 deletions

View File

@@ -69,7 +69,7 @@ class PyObject(Base):
# might not exist sometimes (raises AttributeError)
return self._cls().obj.__name__
def execute(self, params):
def execute(self, evaluator, params):
t = self.type()
if t == 'class':
if not self.instantiated:
@@ -77,9 +77,15 @@ class PyObject(Base):
elif t == 'def':
for name in self._parse_function_doc()[1].split():
try:
yield create(getattr(_builtins, name), builtin, True)
bltn_obj = create(getattr(_builtins, name), builtin, module=builtin)
except AttributeError:
pass
continue
else:
if isinstance(bltn_obj, PyObject):
yield bltn_obj
else:
for result in evaluator.execute(bltn_obj, params):
yield result
def get_self_attributes(self):
return [] # Instance compatibility