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 janssen
Recipients gvanrossum, janssen, jimjjewett, lemburg, loewis, mgiuca, orsenthil, pitrou, thomaspinckney3
Date 2008-08-12.17:47:33
SpamBayes Score 7.1400273e-06
Marked as misclassified No
Message-id <1218563255.63.0.987699803249.issue3300@psf.upfronthosting.co.za>
In-reply-to
Content
For Antoine:

I think the problem that Barry is facing with the email package is that
Unicode strings are an ambiguous representation of a sequence of bytes;
that is, there are a number of different byte sequences a Unicode string
may have come from.  His ingenious use of raw-unicode-escape is an
attempt to conform to the requirement of having to produce a string, but
without losing any data, so that an application program can, if it needs
to, still reprocess that string and retrieve the original data.  Naive
application programs that sort of expected the result to be an ASCII
string will be unaffected.  Not sure it's the best idea; this is all
about just where to force unexpected runtime failures.
History
Date User Action Args
2008-08-12 17:47:35janssensetrecipients: + janssen, lemburg, gvanrossum, loewis, jimjjewett, orsenthil, pitrou, thomaspinckney3, mgiuca
2008-08-12 17:47:35janssensetmessageid: <1218563255.63.0.987699803249.issue3300@psf.upfronthosting.co.za>
2008-08-12 17:47:34janssenlinkissue3300 messages
2008-08-12 17:47:33janssencreate