galaunay
galaunay
Sorry for taking so long to have a look at this. Could I ask you to rebase on the current master branch ? (This should run the automated tests, which...
It looks nice. There is some tests that are failing (travis doesn't show up in PRs anymore, but here is the [link](https://travis-ci.org/github/jorgenschaefer/elpy/builds/682624223)). We are still supporting python2.7 so it would...
Unfortunately, those random failures are a long-standing problem I cannot really get my head around... I restarted the tests and your commit looks fine. It works nicely, but it can...
Another solution would be to put the type hints as "meta" instead of "annotation". This will display the type hints in the minibuffer (where there is more space). It sounds...
> I did have an old stranded jedi package in my elpy directory. I did not call it any place in my init.el, though. I think @gopar was talking about...
Ok so there may be a problem indeed. What is the value of `elpy-rpc-timeout` and `elpy-get-info-from-shell` in your case ? Could you try disabling company-mode and running `(elpy-rpc-get-completion)` with the...
Forgot an "s": `(elpy-rpc-get-completions)`. There was some issues with jedi spawning a lot of subprocess. does the process eating the CPU look like this ? ``` /home/some-user/.virtualenvs/elpy-rpc-venv/bin/python -W ignore -m...
So it may be `jedi` having trouble parsing your code. Does it also happen with smaller pieces of code ? like: ```python class Foo(object): def __init__(self, a, b): self.a =...
# On flymake performance If flymake is really the cause of the slow down, you can delay it execution with : ```elisp (setq flymake-no-changes-timeout 5) ``` Else, you can try...
Looks like a good idea. I will probably be difficult for me to add this in the near future, but I will happily merge a PR if you fancy making...