This commit is contained in:
rocky
2024-07-12 08:40:49 -04:00
parent 01f306bd2c
commit 21f785c4f4
2 changed files with 0 additions and 7 deletions

View File

@@ -39,7 +39,6 @@ SKIP_TESTS=(
[test_winsound.py]=1 # it fails on its own
[test_zlib.py]=1 # it fails on its own
[test_decimal.py]=1 # fails on its own - no module named test_support
>>>>>>> python-3.0-to-3.2
[test_dis.py]=1 # We change line numbers - duh!
[test_generators.py]=1 # fails on its own - no module named test_support
# [test_grammar.py]=1 # fails on its own - no module tests.test_support

View File

@@ -86,12 +86,6 @@ for vers in TEST_VERSIONS:
else:
if vers == "native":
short_vers = os.path.basename(sys.path[-1])
from xdis.version_info import PYTHON_VERSION_TRIPLE, version_tuple_to_str
if PYTHON_VERSION_TRIPLE > (3, 0):
version = version_tuple_to_str(end=2)
PYC = f"*.cpython-{version}.pyc"
>>>>>>> python-3.0-to-3.2
test_options[vers] = (sys.path[-1], PYC, short_vers)
else:
short_vers = vers[:3]