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

Tim Peters tim_one@users.sourceforge.net
Tue, 13 Feb 2001 20:03:54 -0800


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

Modified Files:
	ref2.tex 
Log Message:
Feeble attempt to repair obsolete info about hex escapes.


Index: ref2.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref2.tex,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -r1.22 -r1.23
*** ref2.tex	2001/01/09 21:38:16	1.22
--- ref2.tex	2001/02/14 04:03:51	1.23
***************
*** 359,366 ****
  \index{ASCII@\ASCII{}}
  
! In strict compatibility with Standard C, up to three octal digits are
! accepted, but an unlimited number of hex digits is taken to be part of
! the hex escape (and then the lower 8 bits of the resulting hex number
! are used in 8-bit implementations).
  
  Unlike Standard \index{unrecognized escape sequence}C,
--- 359,364 ----
  \index{ASCII@\ASCII{}}
  
! As in Standard C, up to three octal digits are accepted.  However,
! exactly two hex digits are taken in hex escapes.
  
  Unlike Standard \index{unrecognized escape sequence}C,