diff --git a/jedi/api/interpreter.py b/jedi/api/interpreter.py index 103fa515..cc13be4c 100644 --- a/jedi/api/interpreter.py +++ b/jedi/api/interpreter.py @@ -1,3 +1,6 @@ +""" +TODO This whole module is crap (especially since the new parser) and needs to be rewritten. +""" # import inspect import re diff --git a/jedi/evaluate/imports.py b/jedi/evaluate/imports.py index aef18a08..2769e841 100644 --- a/jedi/evaluate/imports.py +++ b/jedi/evaluate/imports.py @@ -70,7 +70,6 @@ class ImportWrapper(pr.Base): self._import = name.get_parent_until(pr.Import) self.import_path = self._import.path_for_name(name) - self.is_like_search = False # TODO REMOVE def completion_names(self): # The import path needs to be reduced by one, because we're completing.