mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 22:44:27 +08:00
Python 3.5 is not supported for refactorings
This commit is contained in:
@@ -52,12 +52,16 @@ sys.setrecursionlimit(3000)
|
||||
|
||||
|
||||
def no_py2_support(func):
|
||||
# TODO remove when removing Python 2
|
||||
# TODO remove when removing Python 2/3.5
|
||||
def wrapper(self, *args, **kwargs):
|
||||
if self._grammar.version_info.major == 2:
|
||||
raise NotImplementedError(
|
||||
"Python 2 is deprecated and won't support this feature anymore"
|
||||
)
|
||||
if self._grammar.version_info[:2] == (3, 5):
|
||||
raise NotImplementedError(
|
||||
"No support for refactorings on Python 3.5"
|
||||
)
|
||||
return func(self, *args, **kwargs)
|
||||
return wrapper
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ def dir_with_content(tmpdir):
|
||||
return tmpdir.strpath
|
||||
|
||||
|
||||
def test_rename_mod(Script, dir_with_content, skip_python2):
|
||||
def test_rename_mod(Script, dir_with_content, skip_pre_python36):
|
||||
script = Script(
|
||||
'import modx; modx\n',
|
||||
path=os.path.join(dir_with_content, 'some_script.py'),
|
||||
@@ -50,7 +50,7 @@ def test_rename_mod(Script, dir_with_content, skip_python2):
|
||||
''').format(dir=dir_with_content)
|
||||
|
||||
|
||||
def test_rename_none_path(Script, skip_python2):
|
||||
def test_rename_none_path(Script, skip_pre_python36):
|
||||
refactoring = Script('foo', path=None).rename(new_name='bar')
|
||||
with pytest.raises(jedi.RefactoringError, match='on a Script with path=None'):
|
||||
refactoring.apply()
|
||||
|
||||
@@ -56,7 +56,7 @@ def test_static_analysis(static_analysis_case, environment):
|
||||
static_analysis_case.run(assert_static_analysis, environment)
|
||||
|
||||
|
||||
def test_refactor(refactor_case, skip_python2):
|
||||
def test_refactor(refactor_case, skip_pre_python36):
|
||||
"""
|
||||
Run refactoring test case.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user