[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2018-05-16 Thread ioanatia
Change by ioanatia : -- keywords: +patch pull_requests: +6585 stage: test needed -> patch review ___ Python tracker ___ ___ Python-

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2017-09-06 Thread Alexander Mohr
Alexander Mohr added the comment: looks like these were meant to be internal methods, retracting new issues -- ___ Python tracker ___ __

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2017-09-06 Thread Alexander Mohr
Alexander Mohr added the comment: from 3.6: >>> AddrlistClass('John Smith ').getcomment() '' >>> AddrlistClass('John Smith ').getdomain() 'JohnSmith' totally messed up :) -- ___ Python tracker _

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2017-09-06 Thread Alexander Mohr
Changes by Alexander Mohr : -- nosy: +thehesiod versions: +Python 3.6, Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailin

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2017-03-27 Thread ioanatia
Changes by ioanatia : -- nosy: +ioanatia ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2017-02-17 Thread Roundup Robot
Changes by Roundup Robot : -- pull_requests: +103 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2017-02-09 Thread Sascha Silbe
Changes by Sascha Silbe : -- nosy: +sascha_silbe ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2014-07-25 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2012-05-15 Thread R. David Murray
Changes by R. David Murray : -- assignee: r.david.murray -> components: +email versions: -Python 3.1 ___ Python tracker ___ ___ Py

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2011-03-13 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2010-12-27 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2010-07-17 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2010-05-05 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- assignee: barry -> r.david.murray nosy: +r.david.murray ___ Python tracker ___ ___ Python-bugs-list

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2009-07-03 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: -> test needed versions: +Python 2.7 -Python 2.3, Python 2.4, Python 2.5 ___ Python tracker ___ ___

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2008-01-28 Thread Martin v. Löwis
Changes by Martin v. Löwis: _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/op

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2008-01-11 Thread Stuart D Gathman
Stuart D Gathman added the comment: tiran: yes, but that is the wrong answer, and that example is already in the testcase list (with what I believe is the right answer). _ Tracker <[EMAIL PROTECTED]> __

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2008-01-11 Thread Christian Heimes
Christian Heimes added the comment: An example from #1221: >>> email.Utils.parseaddr("a(WRONG)@b") ('WRONG WRONG', '[EMAIL PROTECTED]') -- nosy: +tiran _ Tracker <[EMAIL PROTECTED]> __

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2008-01-11 Thread Stuart D Gathman
Stuart D Gathman added the comment: 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

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2008-01-11 Thread Stuart D Gathman
Stuart D Gathman added the comment: Same or related issues: Issue1221, Issue1409460 _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bugs-list maili

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2008-01-10 Thread Stuart D Gathman
Stuart D Gathman added the comment: Repeating because previous real life test case was rejected as 'spam': It also fails to parse: >>> from email.Utils import parseaddr >>> parseaddr('[EMAIL PROTECTED] <[EMAIL PROTECTED]>') ('', '[EMAIL PROTECTED]') Getting the wrong part as the actual email to

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2008-01-10 Thread Stuart D Gathman
Stuart D Gathman added the comment: Ok, I see the '@' is technically not allowed in an atom. But it either needs to throw an invalid syntax exception, or heuristically return something reasonable. _ Tracker <[EMAIL PROTECTED]>

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2008-01-10 Thread Stuart D Gathman
Stuart D Gathman added the comment: # A quick and very dirty fix for common broken cases, with test cases. import rfc822 def parseaddr(t): """Split email into Fullname and address. >>> parseaddr('[EMAIL PROTECTED]') ('', '[EMAIL PROTECTED]') >>> parseaddr('"Full Name" <[EMAIL PROTECTED

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2008-01-10 Thread Stuart D Gathman
Changes by Stuart D Gathman: -- type: -> behavior _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bugs-list mailing list Unsubscribe: h