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.

作者 AlecRosenbaum
收信人 AlecRosenbaum, barry, r.david.murray
日期 2022-04-06.17:45:12
SpamBayes Score -1.0
Marked as misclassified
Message-id <1649267112.95.0.680497304101.issue47244@roundup.psfhosted.org>
In-reply-to
内容
It seems that `email.utils.formataddr` and `email.utils.parseaddr` are not directly inverse from each other, because `formataddr` does not respect double spaces within the "realname" section.

For example:
```
from email.utils import formataddr, parseaddr

identity = '"foo  bar" <foo@example.com>'

print(formataddr(parseaddr(identity)))
# 'foo  bar <foo@example.com>'

print(formataddr(parseaddr(formataddr(parseaddr(identity)))))
# 'foo bar <foo@example.com>'
```

The first round trip strips the quotes, and the second round trip strips the double space in the "realname" section.

The utility function only seems to check for special characters, but it should also check for double spaces.
历史
日期 用户 动作 参数
2022-04-06 17:45:12AlecRosenbaum修改recipients: + AlecRosenbaum, barry, r.david.murray
2022-04-06 17:45:12AlecRosenbaum修改messageid: <1649267112.95.0.680497304101.issue47244@roundup.psfhosted.org>
2022-04-06 17:45:12AlecRosenbaum链接issue47244 messages
2022-04-06 17:45:12AlecRosenbaum创建