You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
Start supporting PyPy 3.2
Add some PyPy 2.7 and PyPy 3.2 bytecode files
This commit is contained in:
@@ -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))
|
||||
|
Reference in New Issue
Block a user