[issue17505] [doc] email.header.Header.__unicode__ does not decode header
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 <https://bugs.python.org/issue17505> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue17505] [doc] email.header.Header.__unicode__ does not decode header
Change by Vidhya : -- keywords: +patch pull_requests: +29874 stage: -> patch review pull_request: https://github.com/python/cpython/pull/31765 ___ Python tracker <https://bugs.python.org/issue17505> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue17505] [doc] email.header.Header.__unicode__ does not decode header
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 beginner, I am not sure if we are allowed to change the python code. -- ___ Python tracker <https://bugs.python.org/issue17505> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue6634] [doc] sys.exit() called from threads other than the main one: undocumented behaviour
Vidhya added the comment: Thanks Irit for your help. On Thu., Mar. 3, 2022, 10:17 a.m. Irit Katriel, wrote: > > Irit Katriel added the comment: > > Thank you @vidhya. > > -- > resolution: -> fixed > stage: patch review -> resolved > status: open -> closed > > ___ > Python tracker > <https://bugs.python.org/issue6634> > ___ > -- ___ Python tracker <https://bugs.python.org/issue6634> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue6634] [doc] sys.exit() called from threads other than the main one: undocumented behaviour
Vidhya added the comment: Thanks for your comments :). The PR for the same is: https://github.com/python/cpython/pull/31639 -- message_count: 21.0 -> 22.0 pull_requests: +29760 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/31639 ___ Python tracker <https://bugs.python.org/issue6634> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue28516] contextlib.ExitStack.__enter__ has trivial but undocumented behavior
Vidhya added the comment: @Jelle: Thanks. The PR is submitted at https://github.com/python/cpython/pull/31636 -- keywords: +patch message_count: 9.0 -> 10.0 pull_requests: +29758 pull_request: https://github.com/python/cpython/pull/31636 ___ Python tracker <https://bugs.python.org/issue28516> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue17505] [doc] email.header.Header.__unicode__ does not decode header
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 <https://bugs.python.org/issue17505> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue28516] contextlib.ExitStack.__enter__ has trivial but undocumented behavior
Vidhya added the comment: [Entry level contributor seeking guidance] If this is still open, I can update the document. After reading all the above comments, planning to add "The __enter__ method returns the ExitStack instance, and performs no additional operations." at https://docs.python.org/3/library/contextlib.html#contextlib.ExitStack.enter_context. Please let me know your thoughts. -- nosy: +vidhya ___ Python tracker <https://bugs.python.org/issue28516> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue6634] [doc] sys.exit() called from threads other than the main one: undocumented behaviour
Vidhya added the comment: [Entry level contributor seeking guidance] If this is still open, I can work on this. I plan to add the following in sys.exit() and add a reference to thread.exit() at https://docs.python.org/3/library/sys.html#sys.exit: When called from a thread other than the main thread, this causes the thread to exit silently, and is equivalent to calling :func:`thread.exit`. Please correct if anything wrong. -- nosy: +vidhya ___ Python tracker <https://bugs.python.org/issue6634> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue17505] [doc] email.header.Header.__unicode__ does not decode header
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 shown below: unicode(make_header(decode_header('=?gb2312?b?1eLKx9bQzsSy4srUo6E=?='))) If email policy parameter is set as 'policy.default' then the default policy, for that Python version, is used for header encoding and decoding. Please correct me if anything wrong. -- nosy: +vidhya ___ Python tracker <https://bugs.python.org/issue17505> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue21761] [doc] language reference describes the role of module.__file__ inaccurately
Vidhya added the comment: Thanks Alex. I will look into @slateny's patch. -- ___ Python tracker <https://bugs.python.org/issue21761> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue21761] [doc] language reference describes the role of module.__file__ inaccurately
Vidhya added the comment: If this is still open, I would like to work on this. Please let me know. -- nosy: +vidhya ___ Python tracker <https://bugs.python.org/issue21761> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue31327] [doc] Add example of platform-specific support for negative timestamps to the time doc
Vidhya added the comment: [Entry level contributor seeking guidance]If this is not yet fixed, I can work on this. Please let me know. -- nosy: +vidhya ___ Python tracker <https://bugs.python.org/issue31327> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue33601] [doc] Py_UTF8Mode is not documented
Vidhya added the comment: [Entry level contributor seeking guidance]The rst file is updated in this pull request: https://github.com/python/cpython/pull/31480 Unable to update GitHub PR in the issue. Getting the following error "Edit Error: GitHub PR already added to issue" -- ___ Python tracker <https://bugs.python.org/issue33601> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue33601] [doc] Py_UTF8Mode is not documented
Change by Vidhya : -- keywords: +patch pull_requests: +29609 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/31480 ___ Python tracker <https://bugs.python.org/issue33601> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue33601] [doc] Py_UTF8Mode is not documented
Vidhya added the comment: [Entry level contributor seeking guidance]The PR on this issue looks closed. I worked on this and attaching the updated html file. I will open a pull request if this is not yet resolved. -- nosy: +vidhya.friend Added file: https://bugs.python.org/file50630/init.html ___ Python tracker <https://bugs.python.org/issue33601> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue20923] [doc] Explain ConfigParser 'valid section name' and .SECTCRE
Change by Vidhya : -- pull_requests: +29552 pull_request: https://github.com/python/cpython/pull/31413 ___ Python tracker <https://bugs.python.org/issue20923> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue20923] [doc] Explain ConfigParser 'valid section name' and .SECTCRE
Vidhya added the comment: Thanks. A pull request is created at https://github.com/python/cpython/pull/31359. -- ___ Python tracker <https://bugs.python.org/issue20923> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue20923] [doc] Explain ConfigParser 'valid section name' and .SECTCRE
Vidhya added the comment: I am newbie to Python developer group and have the document source build and compiled successfully. Is this issue updated in the document. I would like to work on this if this is not closed. Please let me know. Thanks -- nosy: +vidhya.friend ___ Python tracker <https://bugs.python.org/issue20923> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com