From ea4dcd33e58a361275e5c4d76c402851725058c3 Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Wed, 16 Nov 2011 05:54:07 +0200 Subject: [PATCH] remove duplicated paragraph in the tutorial --- Doc/tutorial/introduction.rst | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 6d8f89008b8..04e2798e4a1 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -240,13 +240,6 @@ would print: This is a rather long string containing\n\ several lines of text much as you would do in C. -The interpreter prints the result of string operations in the same way as they -are typed for input: inside quotes, and with quotes and other funny characters -escaped by backslashes, to show the precise value. The string is enclosed in -double quotes if the string contains a single quote and no double quotes, else -it's enclosed in single quotes. (The :keyword:`print` statement, described -later, can be used to write strings without quotes or escapes.) - Strings can be concatenated (glued together) with the ``+`` operator, and repeated with ``*``::