[Python-checkins] commit of r41513 - python/branches/release24-maint/Doc/ref
reinhold.birkenfeld@python.org
reinhold.birkenfeld at python.org
Tue Nov 22 20:24:29 CET 2005
Author: reinhold.birkenfeld
Date: Tue Nov 22 20:24:23 2005
New Revision: 41513
Modified:
python/branches/release24-maint/Doc/ref/ref2.tex
Log:
Bug #1359035: Doc: Uxxxxxxxx escapes are interpreted in raw unicode literals.
Modified: python/branches/release24-maint/Doc/ref/ref2.tex
==============================================================================
--- python/branches/release24-maint/Doc/ref/ref2.tex (original)
+++ python/branches/release24-maint/Doc/ref/ref2.tex Tue Nov 22 20:24:23 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