You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
Split out Python 3.1 parser from rest.
__pkginfo__.py: use Python 3.1 bytecode fixes
This commit is contained in:
@@ -623,7 +623,8 @@ def get_python_parser(
|
||||
import uncompyle6.parsers.parse3 as parse3
|
||||
if version == 3.1:
|
||||
if compile_mode == 'exec':
|
||||
p = parse3.Python31Parser(debug_parser)
|
||||
import uncompyle6.parsers.parse31 as parse31
|
||||
p = parse31.Python31Parser(debug_parser)
|
||||
else:
|
||||
p = parse3.Python31ParserSingle(debug_parser)
|
||||
elif version == 3.2:
|
||||
|
Reference in New Issue
Block a user