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 andreas-zeller
Recipients andreas-zeller
Date 2021-01-09.18:40:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1610217648.49.0.452941613308.issue42876@roundup.psfhosted.org>
In-reply-to
Content
The following line of code fails in Python 3.6, which I find surprising.

>>> assert '''"""''' == '""""'  # Fails

Note that the following all pass as expected:

>>> assert """'''""" == "'''"  # Passes
>>> assert '''""''' == '""'  # Passes
History
Date User Action Args
2021-01-09 18:40:48andreas-zellersetrecipients: + andreas-zeller
2021-01-09 18:40:48andreas-zellersetmessageid: <1610217648.49.0.452941613308.issue42876@roundup.psfhosted.org>
2021-01-09 18:40:48andreas-zellerlinkissue42876 messages
2021-01-09 18:40:48andreas-zellercreate