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

Fred
This commit is contained in:
Skip Montanaro 2003-05-07 16:01:43 +00:00
parent 50727728b9
commit 45a9c93236
1 changed files with 1 additions and 1 deletions

View File

@ -2803,7 +2803,7 @@ The value of x is 32.5, and y is 40000...
>>> print hellos
'hello, world\n'
>>> # The argument to repr() may be any Python object:
... repr(x, y, ('spam', 'eggs'))
... repr((x, y, ('spam', 'eggs')))
"(32.5, 40000, ('spam', 'eggs'))"
>>> # reverse quotes are convenient in interactive sessions:
... `x, y, ('spam', 'eggs')`