[Python-checkins] CVS: python/dist/src/Doc/ref ref2.tex,1.26,1.26.2.1

Tim Peters tim_one@users.sourceforge.net
Fri, 20 Jul 2001 23:07:14 -0700


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

Modified Files:
      Tag: descr-branch
	ref2.tex 
Log Message:
Merge of trunk delta date2001-07-17b to date2001-07-21.  See PLAN.txt.


Index: ref2.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref2.tex,v
retrieving revision 1.26
retrieving revision 1.26.2.1
diff -C2 -r1.26 -r1.26.2.1
*** ref2.tex	2001/07/06 22:49:52	1.26
--- ref2.tex	2001/07/21 06:07:12	1.26.2.1
***************
*** 356,360 ****
  Unless an `r' or `R' prefix is present, escape sequences in strings
  are interpreted according to rules similar
! to those used by Standard \C{}.  The recognized escape sequences are:
  \index{physical line}
  \index{escape sequence}
--- 356,360 ----
  Unless an `r' or `R' prefix is present, escape sequences in strings
  are interpreted according to rules similar
! to those used by Standard C.  The recognized escape sequences are:
  \index{physical line}
  \index{escape sequence}
***************
*** 404,408 ****
  remains in the string; for example, \code{r"\e""} is a valid string
  literal consisting of two characters: a backslash and a double quote;
! \code{r"\e"} is not a value string literal (even a raw string cannot
  end in an odd number of backslashes).  Specifically, \emph{a raw
  string cannot end in a single backslash} (since the backslash would
--- 404,408 ----
  remains in the string; for example, \code{r"\e""} is a valid string
  literal consisting of two characters: a backslash and a double quote;
! \code{r"\e"} is not a valid string literal (even a raw string cannot
  end in an odd number of backslashes).  Specifically, \emph{a raw
  string cannot end in a single backslash} (since the backslash would
***************
*** 433,441 ****
  concatenation can use different quoting styles for each component
  (even mixing raw strings and triple quoted strings).
- 
- 
- \subsection{Unicode literals \label{unicode}}
- 
- XXX explain more here...
  
  
--- 433,436 ----