Merge branch 'master' into python-2.4

This commit is contained in:
rocky
2018-04-16 13:10:16 -04:00
48 changed files with 380 additions and 191 deletions

View File

@@ -719,6 +719,12 @@ def get_python_parser(
p = parse36.Python36Parser(debug_parser)
else:
p = parse36.Python36ParserSingle(debug_parser)
elif version == 3.7:
import uncompyle6.parsers.parse37 as parse37
if compile_mode == 'exec':
p = parse37.Python37Parser(debug_parser)
else:
p = parse37.Python37ParserSingle(debug_parser)
else:
if compile_mode == 'exec':
p = parse3.Python3Parser(debug_parser)