Towards single compilation

This commit is contained in:
rocky
2016-04-17 22:37:05 -04:00
parent 2c7fcf9e62
commit 7e0526d627
5 changed files with 49 additions and 7 deletions

View File

@@ -818,3 +818,8 @@ class Python3Parser(PythonParser):
% ('expr ' * token.attr, opname))
self.add_unique_rule(rule, opname, token.attr, customize)
return
class Python3ParserSingle(Python3Parser):
# Add:
# call_stmt ::= expr PRINT_EXPR
pass