[Python-checkins] r73185 - python/branches/py3k/Doc/tutorial/introduction.rst

georg.brandl python-checkins at python.org
Wed Jun 3 23:00:59 CEST 2009


Author: georg.brandl
Date: Wed Jun  3 23:00:58 2009
New Revision: 73185

Log:
#6190: Remove duplicate paragraph.

Modified:
   python/branches/py3k/Doc/tutorial/introduction.rst

Modified: python/branches/py3k/Doc/tutorial/introduction.rst
==============================================================================
--- python/branches/py3k/Doc/tutorial/introduction.rst	(original)
+++ python/branches/py3k/Doc/tutorial/introduction.rst	Wed Jun  3 23:00:58 2009
@@ -239,13 +239,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 :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 ``*``::
 


More information about the Python-checkins mailing list