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 sdgathman
Recipients barry, melicertes, sdgathman
Date 2008-01-11.19:14:26
SpamBayes Score 0.054729134
Marked as misclassified No
Message-id <1200078867.28.0.685302540556.issue1025395@psf.upfronthosting.co.za>
In-reply-to
Content
Test cases so far:
  >>> parseaddr('user@example.com')
  ('', 'user@example.com')
  >>> parseaddr('"Full Name" <foo@example.com>')
  ('Full Name', 'foo@example.com')
  >>> parseaddr('spam@spammer.com <foo@example.com>')
  ('spam@spammer.com', 'foo@example.com')
  >>> parseaddr('God@heaven <@hop1.org,@hop2.net:jeff@spec.org>')
  ('God@heaven', 'jeff@spec.org')
  >>> parseaddr('Real Name ((comment)) <addr...@example.com>')
  ('Real Name', 'addr...@example.com')
  >>> parseaddr('a(WRONG)@b')
  ('', 'a@b')
History
Date User Action Args
2008-01-11 19:14:27sdgathmansetspambayes_score: 0.0547291 -> 0.054729134
recipients: + sdgathman, barry, melicertes
2008-01-11 19:14:27sdgathmansetspambayes_score: 0.0547291 -> 0.0547291
messageid: <1200078867.28.0.685302540556.issue1025395@psf.upfronthosting.co.za>
2008-01-11 19:14:26sdgathmanlinkissue1025395 messages
2008-01-11 19:14:26sdgathmancreate