mirror of https://github.com/python/cpython
add missing parens - verified w/ interpreter - sorry to dismiss your comment
Fred
This commit is contained in:
parent
50727728b9
commit
45a9c93236
|
@ -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')`
|
||||
|
|
Loading…
Reference in New Issue