diff options
author | Eli Bendersky <eliben@gmail.com> | 2011-11-16 03:54:07 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2011-11-16 03:54:07 (GMT) |
commit | ea4dcd33e58a361275e5c4d76c402851725058c3 (patch) | |
tree | 47f7ce7e09eb01d913518cfe6560a0bb7369fd2e | |
parent | 174c4f897fd05b8f838cb4db928295f23ab4b033 (diff) | |
download | cpython-ea4dcd33e58a361275e5c4d76c402851725058c3.zip cpython-ea4dcd33e58a361275e5c4d76c402851725058c3.tar.gz cpython-ea4dcd33e58a361275e5c4d76c402851725058c3.tar.bz2 |
remove duplicated paragraph in the tutorial
-rw-r--r-- | Doc/tutorial/introduction.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 6d8f890..04e2798 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 ``*``:: |