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 wamcvey
Recipients
Date 2006-04-05.06:35:58
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
RFC 2822 allows for comments to include other comments
in a mail address. email.Utils.getaddresses() handled
addresses with a comment, but incorrectly advanced the
parsing index twice after a comment finished. This
would cause the outer closing paren in an address like:
    Foo ((FOO Rocks)) <foo@bar.com>
to be missed, and treating the rest of the line as part
of the outer comment.

This patch fixes the bug and adds a testcase to look
for the bug.
History
Date User Action Args
2007-08-23 15:48:08adminlinkissue1464708 messages
2007-08-23 15:48:08admincreate