Merge branch 'python-3.3-to-3.5' into python-3.0-to-3.2

This commit is contained in:
rocky
2024-07-13 09:49:42 -04:00
3 changed files with 20 additions and 11 deletions

View File

@@ -90,7 +90,7 @@ for vers in TEST_VERSIONS:
if PYTHON_VERSION_TRIPLE > (3, 0):
version = version_tuple_to_str(end=2)
PYC = f"*.cpython-{version}.pyc"
PYC = "*.cpython-%s.pyc" % version
test_options[vers] = (sys.path[-1], PYC, short_vers)
else:
short_vers = vers[:3]