1
0
forked from VimPlug/jedi

Remove some 3.7/3.6 artifacts

This commit is contained in:
Dave Halter
2026-04-27 14:35:10 +02:00
parent d4233732be
commit 7bac12c125
2 changed files with 3 additions and 4 deletions
@@ -43,8 +43,8 @@ from test.helpers import root_dir
])
def test_infer_and_goto(Script, code, full_name, has_stub, has_python, way,
kwargs, type_, options, environment):
if type_ == 'infer' and full_name == 'typing.Sequence' and environment.version_info >= (3, 7):
# In Python 3.7+ there's not really a sequence definition, there's just
if type_ == 'infer' and full_name == 'typing.Sequence':
# Since Python 3.7+ there's not really a sequence definition, there's just
# a name that leads nowhere.
has_python = False