Partial fix for SF bug 123730: extra backslash in tutorial.

This commit is contained in:
Tim Peters 2000-11-29 05:51:59 +00:00
parent 4b2b445f28
commit 657ebef2ae
1 changed files with 1 additions and 1 deletions

View File

@ -767,7 +767,7 @@ special characters in the string, you can do so by using the Python
\emph{Unicode-Escape} encoding. The following example shows how:
\begin{verbatim}
>>> u'Hello\\u0020World !'
>>> u'Hello\u0020World !'
u'Hello World !'
\end{verbatim}