Start accepting Python 3.1 bytecode

This commit is contained in:
rocky
2016-09-09 09:11:46 -04:00
parent c4e6af6e4f
commit dd661bc94a
6 changed files with 50 additions and 3 deletions

View File

@@ -79,7 +79,8 @@ for vers in (2.7, 3.4, 3.5, 3.6):
pass
for vers in (2.2, 2.3, 2.4, 2.5, 2.6, 2.7,
3.2, 3.3, 3.4, 3.5, 3.6, 'pypy3.2', 'pypy2.7'):
3.1, 3.2, 3.3,
3.4, 3.5, 3.6, 'pypy3.2', 'pypy2.7'):
bytecode = "bytecode_%s" % vers
key = "bytecode-%s" % vers
test_options[key] = (bytecode, PYC, bytecode, vers)