diff options
Diffstat (limited to 'src/examples/indentedGrammarExample.py')
-rw-r--r-- | src/examples/indentedGrammarExample.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/examples/indentedGrammarExample.py b/src/examples/indentedGrammarExample.py index e7b8cb7..f96524a 100644 --- a/src/examples/indentedGrammarExample.py +++ b/src/examples/indentedGrammarExample.py @@ -71,7 +71,7 @@ rvalue << (funcCall | identifier | Word(nums)) assignment = Group(identifier + "=" + rvalue)
stmt << ( funcDef | assignment | identifier )
-print data
+print(data)
parseTree = suite.parseString(data)
import pprint
|