You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 09:22:40 +08:00
ret_expr -> return_expr
This matches Python's AST a little more closely
This commit is contained in:
@@ -72,9 +72,9 @@ class Python2Parser(PythonParser):
|
||||
|
||||
return_if_stmts ::= return_if_stmt
|
||||
return_if_stmts ::= _stmts return_if_stmt
|
||||
return_if_stmt ::= ret_expr RETURN_END_IF
|
||||
return_if_stmt ::= return_expr RETURN_END_IF
|
||||
|
||||
return_stmt_lambda ::= ret_expr RETURN_VALUE_LAMBDA
|
||||
return_stmt_lambda ::= return_expr RETURN_VALUE_LAMBDA
|
||||
|
||||
stmt ::= break
|
||||
break ::= BREAK_LOOP
|
||||
|
Reference in New Issue
Block a user