Visual Studio Code: Fixing Python Intellisense
Today my colleague, Dmitry Efremov, got an issue after installing the latest VSCode and Python extension - intellisense plainly stopped working for all packages except few very basic. After enabling logging for the extension ("python.devOptions": ["DEBUG"] in user settings), it turned out that jedi, tool used for intellisense, fails with the next message in the output: --------------------------- stderr jediProxy Error (stderr) Traceback (most recent call last): File "completion.py", line 313, in watch self._process_request(self._input.readline()) File "completion.py", line 294, in _process_request script.goto_assignments(), request['id'])) File "/home/dmitry/.vscode/extensions/donjayamanne.python-0.3.17/pythonFiles/jedi/api/__init__.py", line 382, in goto_assignments results = self._goto() File "/home/dmitry/.vscode/extensions/donjayamanne.python-0.3.17/pythonFiles/jedi/api/__init__.py", line 438, in ...