From: Skip Montanaro Date: Wed, 7 May 2003 16:02:06 +0000 (+0000) Subject: add missing parens - verified w/ interpreter - sorry to dismiss your comment X-Git-Tag: v2.2.3c1~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8fc096a3d450d6ef4aa8cfaf5bf7f932d58d0760;p=thirdparty%2FPython%2Fcpython.git add missing parens - verified w/ interpreter - sorry to dismiss your comment Fred --- diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index e39a47a5166d..cba0a8e98bb9 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -2785,7 +2785,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')`