[Python-checkins] python/dist/src/Doc/tut tut.tex,1.181,1.182

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Wed, 07 May 2003 09:01:46 -0700


Update of /cvsroot/python/python/dist/src/Doc/tut
In directory sc8-pr-cvs1:/tmp/cvs-serv15146

Modified Files:
	tut.tex 
Log Message:
add missing parens - verified w/ interpreter - sorry to dismiss your comment
Fred


Index: tut.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/tut/tut.tex,v
retrieving revision 1.181
retrieving revision 1.182
diff -C2 -d -r1.181 -r1.182
*** tut.tex	7 May 2003 15:29:12 -0000	1.181
--- tut.tex	7 May 2003 16:01:43 -0000	1.182
***************
*** 2804,2808 ****
  'hello, world\n'
  >>> # The argument to repr() may be any Python object:
! ... repr(x, y, ('spam', 'eggs'))
  "(32.5, 40000, ('spam', 'eggs'))"
  >>> # reverse quotes are convenient in interactive sessions:
--- 2804,2808 ----
  'hello, world\n'
  >>> # The argument to repr() may be any Python object:
! ... repr((x, y, ('spam', 'eggs')))
  "(32.5, 40000, ('spam', 'eggs'))"
  >>> # reverse quotes are convenient in interactive sessions: