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('[email protected]')
  ('', '[email protected]')
  >>> parseaddr('"Full Name" <[email protected]>')
  ('Full Name', '[email protected]')
  >>> parseaddr('[email protected] <[email protected]>')
  ('[email protected]', '[email protected]')
  >>> parseaddr('God@heaven <@hop1.org,@hop2.net:[email protected]>')
  ('God@heaven', '[email protected]')
  >>> parseaddr('Real Name ((comment)) <[email protected]>')
  ('Real Name', '[email protected]')
  >>> 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