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 georg.brandl
Recipients Stavros, georg.brandl
Date 2008-07-06.13:24:54
SpamBayes Score 0.080539405
Marked as misclassified No
Message-id <1215350695.65.0.544914723994.issue3298@psf.upfronthosting.co.za>
In-reply-to
Content
There is an ambiguity: did you mean """ " or " """ (spaces added for
clarity). Python does not count quotes, parentheses or similar in
strings, so the first occurrence of """ will close the literal.

You can either use triple single quotes, or escape the first quote, like
that: """A "test\"""".
History
Date User Action Args
2008-07-06 13:24:55georg.brandlsetspambayes_score: 0.0805394 -> 0.080539405
recipients: + georg.brandl, Stavros
2008-07-06 13:24:55georg.brandlsetspambayes_score: 0.0805394 -> 0.0805394
messageid: <1215350695.65.0.544914723994.issue3298@psf.upfronthosting.co.za>
2008-07-06 13:24:54georg.brandllinkissue3298 messages
2008-07-06 13:24:54georg.brandlcreate