Extend Python 3.0 "or" grammar rule

This commit is contained in:
rocky
2018-06-24 11:07:37 -04:00
parent 1e0a6d528e
commit 44321fcedf

View File

@@ -73,6 +73,7 @@ class Python30Parser(Python31Parser):
_jump POP_TOP
jump_except ::= JUMP_FORWARD POP_TOP
or ::= expr jmp_false expr jmp_true expr
or ::= expr jmp_true expr
################################################################################
# In many ways 3.0 is like 2.6. One similarity is there is no JUMP_IF_TRUE and