Another Python 3.0 (while) parse bug

This commit is contained in:
rocky
2018-06-23 05:48:14 -04:00
parent fa5da2b1ef
commit fb31fe1f35
3 changed files with 12 additions and 1 deletions

View File

@@ -50,7 +50,7 @@ def test_grammar():
expect_right_recursive.add((('l_stmts',
('lastl_stmt', 'come_froms', 'l_stmts'))))
pass
elif PYTHON_VERSION < 3.3:
elif 3.0 < PYTHON_VERSION < 3.3:
expect_right_recursive.add((('l_stmts',
('lastl_stmt', 'COME_FROM', 'l_stmts'))))
pass