Fix more Python 1.4 decompilation bugs

This commit is contained in:
rocky
2018-06-04 09:37:35 -04:00
parent 82bc294995
commit 7fd21aa227
4 changed files with 16 additions and 0 deletions

View File

@@ -25,6 +25,10 @@ class Python14Parser(Python15Parser):
print_items_nl_stmt ::= expr PRINT_ITEM_CONT print_items_opt PRINT_NEWLINE_CONT
# 1.4 doesn't have linenotab, and although this shouldn't
# be a show stopper, our CONTINUE detection is off here.
continue ::= JUMP_BACK
"""
def __init__(self, debug_parser=PARSER_DEFAULT_DEBUG):