[Python-checkins] commit of r41512 - python/trunk/Doc/ref

reinhold.birkenfeld@python.org reinhold.birkenfeld at python.org
Tue Nov 22 20:24:03 CET 2005


Author: reinhold.birkenfeld
Date: Tue Nov 22 20:23:58 2005
New Revision: 41512

Modified:
   python/trunk/Doc/ref/ref2.tex
Log:
Bug #1359053: Doc: \Uxxxxxxxx escapes _are_ interpreted in raw unicode strings



Modified: python/trunk/Doc/ref/ref2.tex
==============================================================================
--- python/trunk/Doc/ref/ref2.tex	(original)
+++ python/trunk/Doc/ref/ref2.tex	Tue Nov 22 20:23:58 2005
@@ -514,8 +514,9 @@
 
 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
+and \code{\e UXXXXXXXX} escape sequences are 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


More information about the Python-checkins mailing list