[Python-checkins] CVS: python/dist/src/Doc/tut tut.tex,1.122,1.123

Fred L. Drake python-dev@python.org
Tue, 28 Nov 2000 22:03:48 -0800


Update of /cvsroot/python/python/dist/src/Doc/tut
In directory slayer.i.sourceforge.net:/tmp/cvs-serv4830/tut

Modified Files:
	tut.tex 
Log Message:

Fix broken backslashes in Unicode strings section.

This closes bug #123730.


Index: tut.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/tut/tut.tex,v
retrieving revision 1.122
retrieving revision 1.123
diff -C2 -r1.122 -r1.123
*** tut.tex	2000/11/29 05:51:59	1.122
--- tut.tex	2000/11/29 06:03:45	1.123
***************
*** 772,776 ****
  \end{verbatim}
  
! The escape sequence \code{\\u0020} indicates to insert the Unicode
  character with the HEX ordinal 0x0020 (the space character) at the
  given position.
--- 772,776 ----
  \end{verbatim}
  
! The escape sequence \code{\e u0020} indicates to insert the Unicode
  character with the HEX ordinal 0x0020 (the space character) at the
  given position.
***************
*** 785,789 ****
  strings. You have to prepend the string with a small 'r' to have
  Python use the \emph{Raw-Unicode-Escape} encoding. It will only apply
! the above \code{\\uXXXX} conversion if there is an uneven number of
  backslashes in front of the small 'u'.
  
--- 785,789 ----
  strings. You have to prepend the string with a small 'r' to have
  Python use the \emph{Raw-Unicode-Escape} encoding. It will only apply
! the above \code{\e uXXXX} conversion if there is an uneven number of
  backslashes in front of the small 'u'.