Commit 6bc6dbe6 authored by Tim Peters's avatar Tim Peters

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

parent 62fc1931
...@@ -767,7 +767,7 @@ special characters in the string, you can do so by using the Python ...@@ -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: \emph{Unicode-Escape} encoding. The following example shows how:
\begin{verbatim} \begin{verbatim}
>>> u'Hello\\u0020World !' >>> u'Hello\u0020World !'
u'Hello World !' u'Hello World !'
\end{verbatim} \end{verbatim}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment