1
0
forked from VimPlug/jedi

Actually use parso now instead of Jedi.

This commit is contained in:
Dave Halter
2017-05-19 14:20:14 -04:00
parent ccbaa12143
commit 9bca3d39f5
34 changed files with 49 additions and 52 deletions
+2 -2
View File
@@ -22,8 +22,8 @@ x support for type hint comments for functions, `# type: (int, str) -> int`.
import itertools
import os
from jedi.parser import ParserSyntaxError
from jedi.parser.python import parse, tree
from parso import ParserSyntaxError
from parso.python import parse, tree
from jedi.common import unite
from jedi.evaluate.cache import memoize_default
from jedi.evaluate import compiled