1
0
forked from VimPlug/jedi

If newer versions are using Jedi (e.g. at the moment Python 3.7), it shouldn't just result in a grammar issue, just because that grammar doesn't not exist. Just take the Python 3.6 grammar instead.

This commit is contained in:
Dave Halter
2017-01-07 15:54:04 +01:00
parent aff3950085
commit 6d00a5702f
3 changed files with 21 additions and 2 deletions

View File

@@ -233,6 +233,11 @@ try:
except ImportError:
from itertools import izip_longest as zip_longest # Python 2
try:
FileNotFoundError = FileNotFoundError
except NameError:
FileNotFoundError = IOError
def no_unicode_pprint(dct):
"""