mirror of
https://github.com/davidhalter/parso.git
synced 2026-02-06 01:47:58 +08:00
Allow 'any' expression on decorators, PEP 614
This commit is contained in:
committed by
Dave Halter
parent
f8709852e3
commit
345374d040
@@ -163,3 +163,8 @@ def works_ge_py35(each_version):
|
||||
def works_ge_py38(each_version):
|
||||
version_info = parse_version_string(each_version)
|
||||
return Checker(each_version, version_info >= (3, 8))
|
||||
|
||||
@pytest.fixture
|
||||
def works_ge_py39(each_version):
|
||||
version_info = parse_version_string(each_version)
|
||||
return Checker(each_version, version_info >= (3, 9))
|
||||
|
||||
Reference in New Issue
Block a user