[issue23148] Missing the charset parameter in as_encoded_word()

2021-12-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The code was completely rewritten in issue27240. No tests are needed. -- resolution: -> fixed stage: test needed -> resolved status: open -> closed ___ Python tracker ___

[issue23148] Missing the charset parameter in as_encoded_word()

2021-12-13 Thread Irit Katriel
Irit Katriel added the comment: I can't find as_encoded_word anywhere. Even on 3.7 branch. -- nosy: +iritkatriel ___ Python tracker ___ ___

[issue23148] Missing the charset parameter in as_encoded_word()

2016-09-14 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: -> test needed versions: +Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue23148] Missing the charset parameter in as_encoded_word()

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

[issue23148] Missing the charset parameter in as_encoded_word()

2016-06-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The only tests that call cte_encode() are test_address_list_with_unicode_names and test_address_list_with_unicode_names_in_quotes. The only method that calls cte_encode() (besides recursive cte_encode) is TokenList._fold(). Methods UnstructuredTokenList.cte_

[issue23148] Missing the charset parameter in as_encoded_word()

2015-02-21 Thread R. David Murray
R. David Murray added the comment: Same comment as the fold bug...I need to find time to work out a test case (or for someone else to do so). -- ___ Python tracker ___ _

[issue23148] Missing the charset parameter in as_encoded_word()

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

[issue23148] Missing the charset parameter in as_encoded_word()

2015-01-02 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: In Lib/email/_header_value_parser.py:460 the as_encoded_word() method is called without mandatory argument charset. -- components: Library (Lib), email messages: 233310 nosy: barry, r.david.murray, serhiy.storchaka priority: normal severity: normal