]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#6190: Remove duplicate paragraph.
authorGeorg Brandl <georg@python.org>
Wed, 3 Jun 2009 21:00:58 +0000 (21:00 +0000)
committerGeorg Brandl <georg@python.org>
Wed, 3 Jun 2009 21:00:58 +0000 (21:00 +0000)
Doc/tutorial/introduction.rst

index a99db19fe1b6282594a366bbb02c8553c1df6eb3..3757fc377193199d7fa019746d8283b41c9257cb 100644 (file)
@@ -239,13 +239,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 :func:`print` function, described later,
-can be used to write strings without quotes or escapes.)
-
 Strings can be concatenated (glued together) with the ``+`` operator, and
 repeated with ``*``::