[Python-checkins] python/dist/src/Doc/ref ref2.tex,1.40,1.41

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Wed, 07 Aug 2002 06:24:11 -0700


Update of /cvsroot/python/python/dist/src/Doc/ref
In directory usw-pr-cvs1:/tmp/cvs-serv25887

Modified Files:
	ref2.tex 
Log Message:
Fix up some more markup problems.


Index: ref2.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref2.tex,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** ref2.tex	6 Aug 2002 22:36:26 -0000	1.40
--- ref2.tex	7 Aug 2002 13:24:09 -0000	1.41
***************
*** 458,469 ****
  as part of the string, \emph{not} as a line continuation.
  
! When an `r' or `R' prefix is used in conjunction with a `u' or `U'
! prefix, then the \uXXXX escape sequence is processed while \emph{all other
! backslashes are left in the string}.  For example, the string literal
! \code{ur"\u0062\n"} consists of three Unicode characters:
! `LATIN SMALL LETTER B', `REVERSE SOLIDUS', and `LATIN SMALL LETTER N'.
! Backslashes can be escaped with a preceding backslash; however, both
! remain in the string.  As a result, \uXXXX escape sequences are
! only recognized when there are an odd number of backslashes.
  
  \subsection{String literal concatenation\label{string-catenation}}
--- 458,470 ----
  as part of the string, \emph{not} as a line continuation.
  
! When an \character{r} or \character{R} prefix is used in conjunction
! with a \character{u} or \character{U} prefix, then the \code{\e uXXXX}
! escape sequence is processed while \emph{all other backslashes are
! left in the string}.  For example, the string literal \code{ur"\e
! u0062\e n"} consists of three Unicode characters: `LATIN SMALL LETTER
! B', `REVERSE SOLIDUS', and `LATIN SMALL LETTER N'.  Backslashes can be
! escaped with a preceding backslash; however, both remain in the
! string.  As a result, \code{\e uXXXX} escape sequences are only
! recognized when there are an odd number of backslashes.
  
  \subsection{String literal concatenation\label{string-catenation}}