From 45a9c932360c5d463b68aa0af7911e865ec3d5ef Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Wed, 7 May 2003 16:01:43 +0000 Subject: [PATCH] add missing parens - verified w/ interpreter - sorry to dismiss your comment Fred --- Doc/tut/tut.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index a60d442b70..d57d89a26a 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -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')` -- 2.50.1