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 konstantin2
Recipients barry, konstantin2, r.david.murray
Date 2020-12-30.16:01:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1609344085.02.0.266691103598.issue42787@roundup.psfhosted.org>
In-reply-to
Content
What it currently does:

>>> import email.utils
>>> email.utils.getaddresses(['Shuming [范書銘] <shumingf@realtek.com>'])
[('', 'Shuming'), ('', ''), ('', '范書銘'), ('', ''), ('', 'shumingf@realtek.com')]

What it should do:

>>> import email.utils
>>> email.utils.getaddresses(['Shuming [范書銘] <shumingf@realtek.com>'])
[('Shuming [范書銘]'), 'shumingf@realtek.com')]
History
Date User Action Args
2020-12-30 16:01:25konstantin2setrecipients: + konstantin2, barry, r.david.murray
2020-12-30 16:01:25konstantin2setmessageid: <1609344085.02.0.266691103598.issue42787@roundup.psfhosted.org>
2020-12-30 16:01:24konstantin2linkissue42787 messages
2020-12-30 16:01:24konstantin2create