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

View File

@@ -9,10 +9,9 @@ import pytest
import jedi
from jedi import settings, cache
from jedi.parser.cache import _NodeCacheItem, save_module, load_module, \
_get_hashed_path, parser_cache, _load_from_file_system, \
_save_to_file_system
from jedi.parser.python import load_grammar
from parso.cache import _NodeCacheItem, save_module, load_module, \
_get_hashed_path, parser_cache, _load_from_file_system
from parso.python import load_grammar
def test_modulepickling_change_cache_dir(monkeypatch, tmpdir):