Ben Jackson

Results 383 comments of Ben Jackson

seeing this: ``` Run python3 benchmark.py --quiet File "", line 1 (latest_full_v=) ^ SyntaxError: invalid syntax ```

I can't repro locally either, but I ran CI against master to check if it was a CI env issue, and that was OK. so _something_ about this patch is...

OK I can repro locally with python 3.6.15 using pyenv. ``` ben@BeniMac2020 ycmd % ./run_tests.py Running tests on Python 3.6.15 > [email protected] postinstall > cd client && npm install &&...

what the actual... ``` ben@BeniMac2020 ycmd % python -m flake8 ycmd/ *.py build.py:1:15: E999 SyntaxError: invalid syntax ben@BeniMac2020 ycmd % python -m flake8 *.py build.py:1:15: E999 SyntaxError: invalid syntax ben@BeniMac2020...

this fixes is: ```diff except ValueError: - raise ValueError( "{latest_full_v=} is not a version number." ) + raise ValueError( f"{latest_full_v} is not a version number." ) if not quiet: -...

I actually had reason to need this recently myself for some very bizarre reasons so maybe I will add it at some point.

> Typing the import's name and holding down the down arrow key to scroll the list of suggestions FWIW I am working on a fix for the YCM behaviour with...

I think there is something in the docs about this, particularly peer dependencies. http://ternjs.net/doc/manual.html#plugin_third_party Does that work?