Mailing List Archive

python/dist/src/Doc/lib libre.tex,1.82,1.83
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv32637

Modified Files:
libre.tex
Log Message:
Explain octal escapes. Fixes #542226.


Index: libre.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libre.tex,v
retrieving revision 1.82
retrieving revision 1.83
diff -C2 -d -r1.82 -r1.83
*** libre.tex 10 Apr 2002 21:28:31 -0000 1.82
--- libre.tex 11 Apr 2002 12:24:12 -0000 1.83
***************
*** 374,382 ****
\end{verbatim}

! Note that octal escapes are not included. While the parser can
! attempt to determine whether a character is being specified by it's
! ordinal value expressed in octal, doing so yields an expression which
! is relatively difficult to maintain, as the same syntax is used to
! refer to numbered groups.


--- 374,380 ----
\end{verbatim}

! Octal escapes are included in a limited form: If the first digit is a
! 0, or if there are three octal digits, it is considered an octal
! escape. Otherwise, it is a group reference.