Merge branch 'master' into python-2.4

This commit is contained in:
rocky
2019-04-10 12:03:39 -04:00
45 changed files with 329 additions and 56 deletions

View File

@@ -745,6 +745,12 @@ def get_python_parser(
p = parse37.Python37Parser(debug_parser)
else:
p = parse37.Python37ParserSingle(debug_parser)
elif version == 3.8:
import uncompyle6.parsers.parse38 as parse38
if compile_mode == 'exec':
p = parse38.Python38Parser(debug_parser)
else:
p = parse38.Python38ParserSingle(debug_parser)
else:
if compile_mode == 'exec':
p = parse3.Python3Parser(debug_parser)