From 657ebef2ae0d6694a22fc58f12ce5105156fd762 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Wed, 29 Nov 2000 05:51:59 +0000 Subject: [PATCH] Partial fix for SF bug 123730: extra backslash in tutorial. --- Doc/tut/tut.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 87c7a9a204c..9deb26ae9b1 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -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}