[issue27931] Email parse IndexError <""@wiarcom.com>

2018-01-29 Thread Xiang Zhang
Change by Xiang Zhang : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue27931] Email parse IndexError <""@wiarcom.com>

2018-01-29 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: New changeset 6ea75b174da0cf824e2acc5db6b53798f5f4e4f9 by Mariatta (Miss Islington (bot)) in branch '3.6': bpo-27931: Fix email address header parsing error (GH-5329) (GH-5431)

[issue27931] Email parse IndexError <""@wiarcom.com>

2018-01-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +5266 ___ Python tracker ___

[issue27931] Email parse IndexError <""@wiarcom.com>

2018-01-29 Thread R. David Murray
R. David Murray added the comment: New changeset aa218d1649690d1c1ba86a9972f7fae646bf1a8f by R. David Murray (jayyyin) in branch 'master': bpo-27931: Fix email address header parsing error (#5329)

[issue27931] Email parse IndexError <""@wiarcom.com>

2018-01-26 Thread Jay Yin
Jay Yin added the comment: https://github.com/python/cpython/pull/5329 this is the pending pull request for this -- nosy: +jayyin11043 ___ Python tracker

[issue27931] Email parse IndexError <""@wiarcom.com>

2018-01-25 Thread Xiang Zhang
Change by Xiang Zhang : -- type: -> behavior versions: +Python 3.7 -Python 3.5 ___ Python tracker ___

[issue27931] Email parse IndexError <""@wiarcom.com>

2018-01-25 Thread Jay Yin
Change by Jay Yin : -- pull_requests: +5174 stage: commit review -> patch review ___ Python tracker ___

[issue27931] Email parse IndexError <""@wiarcom.com>

2017-11-30 Thread Константин Волков
Константин Волков added the comment: ping -- ___ Python tracker ___ ___

[issue27931] Email parse IndexError <""@wiarcom.com>

2017-01-09 Thread Константин Волков
Константин Волков added the comment: ping -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue27931] Email parse IndexError <""@wiarcom.com>

2016-10-17 Thread Xiang Zhang
Xiang Zhang added the comment: Ping. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27931] Email parse IndexError <""@wiarcom.com>

2016-09-09 Thread Xiang Zhang
Xiang Zhang added the comment: You are right David. But I don't understand what it has to do with headerregistry. I update my original patch to get that behaviour, limit it the affection in angleaddr. Now seems everything is fine. >>>

[issue27931] Email parse IndexError <""@wiarcom.com>

2016-09-09 Thread R. David Murray
R. David Murray added the comment: Reviewed. There is something else that needs fixing. The address needs to re-render as ""@wiarcom.com, which it doesn't currently. I scanned the rendering code in _header_value_registry quickly and its not obvious to me why it doesn't work, so it may be a

[issue27931] Email parse IndexError <""@wiarcom.com>

2016-09-08 Thread Xiang Zhang
Xiang Zhang added the comment: Ping this and hope you don't forget about it David. :) -- ___ Python tracker ___

[issue27931] Email parse IndexError <""@wiarcom.com>

2016-09-02 Thread Xiang Zhang
Xiang Zhang added the comment: It should be. If there is anything wrong I'd like to hear and fix. -- ___ Python tracker ___

[issue27931] Email parse IndexError <""@wiarcom.com>

2016-09-02 Thread R. David Murray
R. David Murray added the comment: You are correct, it is technically a valid angleaddr. I'll review this next week, the patch looks good (thanks) but I need to double check a couple things before I commit. -- assignee: -> r.david.murray stage: needs patch -> commit review

[issue27931] Email parse IndexError <""@wiarcom.com>

2016-09-02 Thread Xiang Zhang
Xiang Zhang added the comment: Looking at the spec this is a valid angle addr. Not only et_angle_addr('<""@wiarcom.com> SIZE=28113')[0].addr_spec but also et_angle_addr('<""@wiarcom.com> SIZE=28113')[0].local_part fails for the same reason. The problem exists in get_bare_quoted_string. When

[issue27931] Email parse IndexError <""@wiarcom.com>

2016-09-01 Thread R. David Murray
Changes by R. David Murray : -- stage: -> needs patch versions: +Python 3.6 ___ Python tracker ___

[issue27931] Email parse IndexError <""@wiarcom.com>

2016-09-01 Thread Константин Волков
New submission from Константин Волков: Email lib fails to parse some emails: from email._header_value_parser import get_angle_addr get_angle_addr('<""@wiarcom.com> SIZE=28113').addr_spec IndexError: list index out of range Seems that email address can be parsed. -- components: