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 maxking
Recipients barry, maxking, r.david.murray, uckelman, xiang.zhang
Date 2019-06-14.19:04:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1560539052.11.0.241701281041.issue29412@roundup.psfhosted.org>
In-reply-to
Content
For the record, this is how I tested using the master branch:

>>> msg = email.message_from_string('  To: (Recipient list suppressed)')
>>> msg['To']
>>> import email.policy
>>> msg = email.message_from_string('  To: (Recipient list suppressed)', policy=email.policy.default)
>>> msg
<email.message.EmailMessage object at 0x7f377512b370>
>>> msg['To']
>>> msg.get('to')
History
Date User Action Args
2019-06-14 19:04:12maxkingsetrecipients: + maxking, barry, r.david.murray, xiang.zhang, uckelman
2019-06-14 19:04:12maxkingsetmessageid: <1560539052.11.0.241701281041.issue29412@roundup.psfhosted.org>
2019-06-14 19:04:12maxkinglinkissue29412 messages
2019-06-14 19:04:12maxkingcreate