1
0
forked from VimPlug/jedi

Don't use python_version directly on evaluator anymore

This commit is contained in:
Dave Halter
2017-12-28 01:44:59 +01:00
parent 31f1913b07
commit 6b6795c40c
3 changed files with 5 additions and 4 deletions

View File

@@ -300,4 +300,8 @@ class AccessHandle(object):
@memoize_method
def _cached_results(self, name, *args, **kwargs):
if type(self._subprocess) == EvaluatorSubprocess:
print(name, args, kwargs,
self._subprocess.get_compiled_method_return(self.id, name, *args, **kwargs)
)
return self._subprocess.get_compiled_method_return(self.id, name, *args, **kwargs)