Remove some Jedi occurances.

This commit is contained in:
Dave Halter
2017-05-11 07:43:03 -04:00
parent 150fb4c86e
commit 68cc2a9354
2 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ collect_ignore = ["setup.py"]
# The following hooks (pytest_configure, pytest_unconfigure) are used # The following hooks (pytest_configure, pytest_unconfigure) are used
# to modify `jedi.settings.cache_directory` because `clean_jedi_cache` # to modify `jedi.settings.cache_directory` because `clean_parso_cache`
# has no effect during doctests. Without these hooks, doctests uses # has no effect during doctests. Without these hooks, doctests uses
# user's cache (e.g., ~/.cache/jedi/). We should remove this # user's cache (e.g., ~/.cache/jedi/). We should remove this
# workaround once the problem is fixed in py.test. # workaround once the problem is fixed in py.test.
@@ -51,7 +51,7 @@ def pytest_unconfigure(config):
@pytest.fixture(scope='session') @pytest.fixture(scope='session')
def clean_jedi_cache(request): def clean_parso_cache(request):
""" """
Set `jedi.settings.cache_directory` to a temporary directory during test. Set `jedi.settings.cache_directory` to a temporary directory during test.

View File

@@ -1,5 +1,5 @@
from abc import abstractmethod, abstractproperty from abc import abstractmethod, abstractproperty
from parso._compatibility import utf8_repr, encoding, is_py3 from jedi._compatibility import utf8_repr, encoding, is_py3
def search_ancestor(node, *node_types): def search_ancestor(node, *node_types):