forked from VimPlug/jedi
Eliminate is_py3 usages
This commit is contained in:
@@ -7,7 +7,7 @@ mixing in Python code, the autocompletion should work much better for builtins.
|
||||
import os
|
||||
from itertools import chain
|
||||
|
||||
from jedi._compatibility import is_py3, unicode
|
||||
from jedi._compatibility import unicode
|
||||
|
||||
fake_modules = {}
|
||||
|
||||
|
||||
@@ -300,8 +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)
|
||||
)
|
||||
#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)
|
||||
|
||||
Reference in New Issue
Block a user