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 grmtz
Recipients grmtz
Date 2010-03-13.15:29:46
SpamBayes Score 0.20495138
Marked as misclassified No
Message-id <1268494188.38.0.891731205331.issue8132@psf.upfronthosting.co.za>
In-reply-to
Content
Examples:

s = '=?UTF-8?B?QWNjdXPDqSBkZSByw6ljZXB0aW9uIChhZmZpY2jDqSkgLSA=?=Arobase !'
decode_header(s) --->
[('=?UTF-8?B?QWNjdXPDqSBkZSByw6ljZXB0aW9uIChhZmZpY2jDqSkgLSA=?=Arobase !', None)]
which seems bad...
but
ss ='=?UTF-8?B?QWNjdXPDqSBkZSByw6ljZXB0aW9uIChhZmZpY2jDqSkgLSA=?= Arobase !'
decode_header(ss) --->
[('Accus\xc3\xa9 de r\xc3\xa9ception (affich\xc3\xa9) - ', 'utf-8'), ('Arobase !', None)]
which seems good...
History
Date User Action Args
2010-03-13 15:29:48grmtzsetrecipients: + grmtz
2010-03-13 15:29:48grmtzsetmessageid: <1268494188.38.0.891731205331.issue8132@psf.upfronthosting.co.za>
2010-03-13 15:29:46grmtzlinkissue8132 messages
2010-03-13 15:29:46grmtzcreate