Start supporting PyPy 3.2

Add some PyPy 2.7 and PyPy 3.2 bytecode files
This commit is contained in:
rocky
2016-07-24 04:16:54 -04:00
parent 9754d27597
commit 21683719e1
52 changed files with 5 additions and 5 deletions

View File

@@ -53,7 +53,7 @@ class Scanner(object):
self.show_asm = show_asm
if version in PYTHON_VERSIONS:
if is_pypy:
if is_pypy and version != 3.2:
v_str = "opcode_pypy%s" % (int(version * 10))
else:
v_str = "opcode_%s" % (int(version * 10))