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
@@ -15,8 +15,8 @@ Unfortunately every other thing is being ignored (e.g. a == '' would be easy to
check for -> a is a string). There's big potential in these checks.
"""
from jedi.parser.python import tree
from jedi.parser.tree import search_ancestor
from parso.python import tree
from parso.tree import search_ancestor
from jedi import debug
from jedi.common import unite
from jedi import settings