[issue23147] Possible error in _header_value_parser.py

2020-01-07 Thread R. David Murray
R. David Murray added the comment: Thanks for the ping. Whether or not Serhiy's patch fixed the original problem, the algorithm rewrite has happened so this issue is no longer relevant in any case. -- stage: test needed -> resolved status: open -> closed ___

[issue23147] Possible error in _header_value_parser.py

2020-01-06 Thread Batuhan
Batuhan added the comment: This issue looks resolved. -- nosy: +BTaskaya ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue23147] Possible error in _header_value_parser.py

2016-09-14 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: -> test needed versions: +Python 3.6, Python 3.7 -Python 3.4 ___ Python tracker ___ ___ Pytho

[issue23147] Possible error in _header_value_parser.py

2016-07-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset efd4ffa88173 by Serhiy Storchaka in branch '3.5': Issues #23147, #23148: Presumably fixed bugs in folding UnstructuredTokenList. https://hg.python.org/cpython/rev/efd4ffa88173 New changeset 33593fcdf8b0 by Serhiy Storchaka in branch 'default': Issue

[issue23147] Possible error in _header_value_parser.py

2015-02-21 Thread R. David Murray
R. David Murray added the comment: Yes, I assumed that you didn't have a test case. I was explaining why I hadn't done anything with this issue :) -- ___ Python tracker ___ ___

[issue23147] Possible error in _header_value_parser.py

2015-02-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If I had a test case, I would write the patch. But I'm not experienced in the email package. -- ___ Python tracker ___ __

[issue23147] Possible error in _header_value_parser.py

2015-02-21 Thread R. David Murray
R. David Murray added the comment: Probably. What I need is a test case that triggers it. (FYI, I know there are other bugs in that algorithm...what I really need to do is completely rewrite it to be simpler and more understandable, but there are so many edge cases that I haven't found the t

[issue23147] Possible error in _header_value_parser.py

2015-02-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ping. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue23147] Possible error in _header_value_parser.py

2015-01-02 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: In UnstructuredTokenList._fold() at line 439 the fold() method is called with one positional argument. if part.has_fws: part.fold(folded) continue But there are no fold() methods with one positional parameter. Ma