Commit ed2d72e9 authored by Skip Montanaro's avatar Skip Montanaro

add missing parens - verified w/ interpreter - sorry to dismiss your comment

Fred
parent 0cd3ec38
...@@ -2803,7 +2803,7 @@ The value of x is 32.5, and y is 40000... ...@@ -2803,7 +2803,7 @@ The value of x is 32.5, and y is 40000...
>>> print hellos >>> print hellos
'hello, world\n' 'hello, world\n'
>>> # The argument to repr() may be any Python object: >>> # The argument to repr() may be any Python object:
... repr(x, y, ('spam', 'eggs')) ... repr((x, y, ('spam', 'eggs')))
"(32.5, 40000, ('spam', 'eggs'))" "(32.5, 40000, ('spam', 'eggs'))"
>>> # reverse quotes are convenient in interactive sessions: >>> # reverse quotes are convenient in interactive sessions:
... `x, y, ('spam', 'eggs')` ... `x, y, ('spam', 'eggs')`
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment