fixes 151

This commit is contained in:
rocky
2018-01-29 01:05:22 -05:00
parent 5edcc7c2eb
commit 5039a71846
4 changed files with 16 additions and 3 deletions

View File

@@ -323,7 +323,7 @@ class PythonParser(GenericASTBuilder):
stmt ::= return
return ::= ret_expr RETURN_VALUE
# returns are a sequence of statements that ends in a RETURN statement.
# "returns" nonterminal is a sequence of statements that ends in a RETURN statement.
# In later Python versions with jump optimization, this can cause JUMPs
# that would normally appear to be omitted.