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

I used fakegir and put the generated files in the virtualenv directory. I found that I couldn't jump to gi.repository during the completion and it didn't work properly. But I...

It would be great to have support for ipython files. For example: ``` %tim -> %timeit ```

Related PR: https://github.com/palantir/python-language-server/pull/701 `/` and `*` in parameters list are not parameters but notations. See [PEP570](https://www.python.org/dev/peps/pep-0570/#syntax-and-semantics).

I am having a strange issue with a false positive error. I have a typical Python3 project with `setup.py` and the package directory, with all modules inside and, obviously, the...

In some cases I don't want completion with snippets: ```python class Foo(object): def __init__(self, a, b, c): pass class Bar(Foo| ``` ```python from datetime import date, datetime if foo: fn...

I'm sorry to ask such question, but i can't figure out how to start this server to use with emacs' "eglot" (in stdio mode basically) I did `pip install 'python-language-server'`...

When I try to rename a variable in emacs, say "foo" to "foo2", and then try to rename it back to "foo", nothing happens. If I then rename a different...

### Steps to reproduce 1. Create a directory e.g. `test_py` and inside it create file `main.py` with content ```python def main(*args, **kwargs): print("main") def test_main_completion(): main ``` 2. Send initialize...

When I tried to run `pyls` from command line, I encountered this issue. Below is the full traceback: ``` Traceback (most recent call last): File "/usr/bin/pyls", line 11, in load_entry_point('python-language-server==0.21.2',...

It seems commit dfff3c965fea83c0429b17c37a0668b6023f519b by @gatesn changed the default value of the config parameter pyls.plugins.jedi_completion.include_params from true to false. package.json still says its default value is true, so this might...