diff options
Diffstat (limited to 'src/examples/nested.py')
-rw-r--r-- | src/examples/nested.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/examples/nested.py b/src/examples/nested.py index bd529f5..24cf2f4 100644 --- a/src/examples/nested.py +++ b/src/examples/nested.py @@ -22,9 +22,9 @@ data = """ # use {}'s for nested lists
nestedItems = nestedExpr("{", "}")
-print( (nestedItems+stringEnd).parseString(data).asList() )
+print(( (nestedItems+stringEnd).parseString(data).asList() ))
# use default delimiters of ()'s
mathExpr = nestedExpr()
-print( mathExpr.parseString( "((( ax + by)*C) *(Z | (E^F) & D))") )
+print(( mathExpr.parseString( "((( ax + by)*C) *(Z | (E^F) & D))") ))
|