[Python-checkins] cpython (2.7): remove duplicated paragraph in the tutorial

eli.bendersky python-checkins at python.org
Wed Nov 16 04:54:09 CET 2011


http://hg.python.org/cpython/rev/ed8aace4db0e
changeset:   73584:ed8aace4db0e
branch:      2.7
user:        Eli Bendersky <eliben at gmail.com>
date:        Wed Nov 16 05:54:07 2011 +0200
summary:
  remove duplicated paragraph in the tutorial

files:
  Doc/tutorial/introduction.rst |  7 -------
  1 files changed, 0 insertions(+), 7 deletions(-)


diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -240,13 +240,6 @@
    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 ``*``::
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list