You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
NT break_stmt, continue_stmt -> break, continue...
to match AST
This commit is contained in:
@@ -88,8 +88,8 @@ class Python3Parser(PythonParser):
|
||||
return_if_stmts ::= _stmts return_if_stmt
|
||||
return_if_stmt ::= ret_expr RETURN_END_IF
|
||||
|
||||
stmt ::= break_stmt
|
||||
break_stmt ::= BREAK_LOOP
|
||||
stmt ::= break
|
||||
break ::= BREAK_LOOP
|
||||
|
||||
stmt ::= continue
|
||||
continue ::= CONTINUE
|
||||
|
Reference in New Issue
Block a user