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 apollo13
Recipients apollo13, barry, r.david.murray
Date 2013-12-28.15:44:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1388245480.95.0.672857267408.issue20089@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, it works on python3.3 (from debian); I am parsing directly via email.message_from_string:
Python 3.3.3 (default, Dec  8 2013, 14:51:59) 
[GCC 4.8.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import email
>>> msg="""Content-Type: text/plain; charset="utf-8"
... MIME-Version: 1.0
... Content-Transfer-Encoding: 8bit
... Subject: =?utf-8?q?Ch=C3=A8re_maman?=
... From: from@example.com
... To: to@example.com
... Date: Sat, 28 Dec 2013 13:08:07 -0000
... Message-ID: <20131228130807.3669.79195@localhost>
... 
... Je t'aime très fort"""
>>> email.message_from_string(msg)
<email.message.Message object at 0x7fcfbcbf9090>
History
Date User Action Args
2013-12-28 15:44:40apollo13setrecipients: + apollo13, barry, r.david.murray
2013-12-28 15:44:40apollo13setmessageid: <1388245480.95.0.672857267408.issue20089@psf.upfronthosting.co.za>
2013-12-28 15:44:40apollo13linkissue20089 messages
2013-12-28 15:44:40apollo13create