[issue17505] [doc] email.header.Header.__unicode__ does not decode header

2022-03-08 Thread Vidhya
Vidhya added the comment: The PR for the email parser doc update is: https://github.com/python/cpython/pull/31765 Can someone review it pls. -- ___ Python tracker ___

[issue17505] [doc] email.header.Header.__unicode__ does not decode header

2022-03-08 Thread Vidhya
Change by Vidhya : -- keywords: +patch pull_requests: +29874 stage: -> patch review pull_request: https://github.com/python/cpython/pull/31765 ___ Python tracker ___

[issue17505] [doc] email.header.Header.__unicode__ does not decode header

2022-03-04 Thread Vidhya
Vidhya added the comment: @hniksic: Thanks for your suggestions. I will look into BytesFeedParser documents. @david.murray: I can help you for the switch over to the default in the default policy and update the deprecation as well. It will be good if someone can guide me on this. Being a

[issue17505] [doc] email.header.Header.__unicode__ does not decode header

2022-03-04 Thread R. David Murray
R. David Murray added the comment: The policy is named 'default' because it was intended to become the default two feature releases after the new email code became non-provisional (first: deprecate not specifying an explicit policy, next release make default the default policy and make the

[issue17505] [doc] email.header.Header.__unicode__ does not decode header

2022-03-04 Thread Hrvoje Nikšić
Hrvoje Nikšić added the comment: > Any suggestions on what needs to be done for current revisions? Hi! I'm the person who submitted this issue back in 2013. Let's take a look at how things are in Python 3.10: Python 3.10.2 (main, Jan 13 2022, 19:06:22) [GCC 10.3.0] on linux Type "help",

[issue17505] [doc] email.header.Header.__unicode__ does not decode header

2022-03-01 Thread Vidhya
Vidhya added the comment: The latest versions 3.9, 3.10 and 3.11 are updated in the issue. So I thought like it still applies. @irit: Any suggestions on what needs to be done for current revisions? -- ___ Python tracker

[issue17505] [doc] email.header.Header.__unicode__ does not decode header

2022-02-28 Thread Jelle Zijlstra
Jelle Zijlstra added the comment: The messages above are very old and seem to be discussing Python 2. There is no `__unicode__` method any more, for example, though there is a `__str__` method which presumably does what `__unicode__` used to do. It is documented now at

[issue17505] [doc] email.header.Header.__unicode__ does not decode header

2022-02-28 Thread Vidhya
Vidhya added the comment: [Entry level contributor seeking guidance] If this is still open, I like to work on this. Also, planning to add the following(if no PR yet created) at make_header API at https://docs.python.org/3/library/email.header.html : To get unicode strings use the API as

[issue17505] [doc] email.header.Header.__unicode__ does not decode header

2021-12-13 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy title: email.header.Header.__unicode__ does not decode header -> [doc] email.header.Header.__unicode__ does not decode header versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.2, Python 3.3, Python 3.4