python-language-server icon indicating copy to clipboard operation
python-language-server copied to clipboard

An implementation of the Language Server Protocol for Python

Results 113 python-language-server issues
Sort by recently updated
recently updated
newest added

With these two commits, jedi started using PosixPath objects instead of strings to represent paths: https://github.com/davidhalter/jedi/commit/480a464179180c67bc7fc2ac61cd4a8ddb7a68d8 https://github.com/davidhalter/jedi/commit/db0e90763be0f65de1a03a270f10272b46184892 So any attempts to use str methods (e.g. `endswith`, `startswith`) and subscripting will...

I'm using pyls (installed from pypi) with [emacs-lsp](https://github.com/emacs-lsp/lsp-mode) and got it sort of working, but on completion I get sometimes the error KeyError: 'arguments' and no completion. Any idea how...

upstream

Pull request for https://github.com/palantir/python-language-server/issues/823 I've done a little investigation so I can say that `Completion.get_signatures()` and `Completion.docstring()` slow down performance about 5 times. The results of the functions are not...

This PR migrates the pyls-mypy plugin, https://github.com/tomv564/pyls-mypy, to the core plugins of PyLS for us to maintain

Hello I'm trying to get develop this against VS code but when I run `yarn install` I'm warned that yarn install v1.22.4 [1/5] Validating package.json... warning [email protected]: The engine "vscode"...

I'm having this problem where the system can't find Jedi, even though it's already installed. The import statement looks right, so it might be a problem with my python setup....

Scenario: - Using a docker container to encapsulate Python environment for my project. - There is a directory in my local machine, let's say `/home/me/dev/my_project`, where my source code lives....

When pyls is completing identifiers in imports, type hints and parent classes, it inserts parentheses and default function arguments, which is obviously wrong. It would be better to just insert...

Some version, after the 0.30.0, maybe broke the arguments list, when autocomplete appear `Exception($0)` for example, and not `Exception(args)`. When I downgrade to 0.30.0 everything works fine. Maybe I could...

**Describe the bug** I keep getting this error RecursionError: maximum recursion depth exceeded in comparison. When normally navigating through a python source code, suddenly it freezes and after a while...