]> granicus.if.org Git - python/commitdiff
Partial fix for SF bug 123730: extra backslash in tutorial.
authorTim Peters <tim.peters@gmail.com>
Wed, 29 Nov 2000 05:51:59 +0000 (05:51 +0000)
committerTim Peters <tim.peters@gmail.com>
Wed, 29 Nov 2000 05:51:59 +0000 (05:51 +0000)
Doc/tut/tut.tex

index 87c7a9a204c854139d0c3d575bba137b3b3f36b5..9deb26ae9b1dca786951bd297fd2263b54615338 100644 (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}