diff options
Diffstat (limited to 'src/examples/stackish.py')
-rw-r--r-- | src/examples/stackish.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/examples/stackish.py b/src/examples/stackish.py index 1c4d84c..f80b4d6 100644 --- a/src/examples/stackish.py +++ b/src/examples/stackish.py @@ -76,6 +76,6 @@ tests = """\ for test in tests:
if test:
- print test
- print item.parseString(test).dump()
- print
\ No newline at end of file + print(test)
+ print(item.parseString(test).dump())
+ print()
|