Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 45a9c93

Browse files
author
Skip Montanaro
committed
add missing parens - verified w/ interpreter - sorry to dismiss your comment
Fred
1 parent 5072772 commit 45a9c93

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/tut/tut.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2803,7 +2803,7 @@ \section{Fancier Output Formatting \label{formatting}}
28032803
>>> print hellos
28042804
'hello, world\n'
28052805
>>> # The argument to repr() may be any Python object:
2806-
... repr(x, y, ('spam', 'eggs'))
2806+
... repr((x, y, ('spam', 'eggs')))
28072807
"(32.5, 40000, ('spam', 'eggs'))"
28082808
>>> # reverse quotes are convenient in interactive sessions:
28092809
... `x, y, ('spam', 'eggs')`

0 commit comments

Comments
 (0)