This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mark.dickinson
Recipients Deshpande, docs@python, mark.dickinson
Date 2019-07-12.21:16:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1562966162.14.0.619038546701.issue37575@roundup.psfhosted.org>
In-reply-to
Content
The documentation is correct here; none of the examples you show demonstrates implicit concatenation of string-valued expressions.
The tutorial documentation is referring to two strings placed
directly next to each other with no other syntax (other than
whitespace) in between.

For example, taking just the first line you give (after the definitions):

    print(s1, s2, "\n", s3, "\n")

Nowhere in this line are two string-value expressions placed right next
to each other; they're occurring in an argument list to a function,
separated by commas. The other lines are similar.
History
Date User Action Args
2019-07-12 21:16:02mark.dickinsonsetrecipients: + mark.dickinson, docs@python, Deshpande
2019-07-12 21:16:02mark.dickinsonsetmessageid: <1562966162.14.0.619038546701.issue37575@roundup.psfhosted.org>
2019-07-12 21:16:02mark.dickinsonlinkissue37575 messages
2019-07-12 21:16:01mark.dickinsoncreate