[issue42770] Typo in email.headerregistry docs

2020-12-28 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the report, bazwal; for the patch, Zackery; and for the ping Ammar :) -- nosy: +zach.ware resolution: -> fixed stage: patch review -> resolved status: open -> closed type: enhancement -> behavior ___ Pytho

[issue42770] Typo in email.headerregistry docs

2020-12-28 Thread miss-islington
miss-islington added the comment: New changeset 0b43778b3cd222761beb850178492b6bd0ea2370 by Miss Islington (bot) in branch '3.9': bpo-42770: Fix a typo in the email.headerregistry docs (GH-23982) https://github.com/python/cpython/commit/0b43778b3cd222761beb850178492b6bd0ea2370 -- _

[issue42770] Typo in email.headerregistry docs

2020-12-28 Thread miss-islington
miss-islington added the comment: New changeset e11639880a73f30b4009efa8d14c350932e35332 by Miss Islington (bot) in branch '3.8': bpo-42770: Fix a typo in the email.headerregistry docs (GH-23982) https://github.com/python/cpython/commit/e11639880a73f30b4009efa8d14c350932e35332 -- _

[issue42770] Typo in email.headerregistry docs

2020-12-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +22827 pull_request: https://github.com/python/cpython/pull/23984 ___ Python tracker ___ __

[issue42770] Typo in email.headerregistry docs

2020-12-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +22828 pull_request: https://github.com/python/cpython/pull/23985 ___ Python tracker ___ __

[issue42770] Typo in email.headerregistry docs

2020-12-28 Thread miss-islington
miss-islington added the comment: New changeset c56988b88fecf6dc70f039704fda6051a0754db1 by Zackery Spytz in branch 'master': bpo-42770: Fix a typo in the email.headerregistry docs (GH-23982) https://github.com/python/cpython/commit/c56988b88fecf6dc70f039704fda6051a0754db1 -- nosy:

[issue42770] Typo in email.headerregistry docs

2020-12-28 Thread Zackery Spytz
Zackery Spytz added the comment: I've created a fix for this error. -- versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs

[issue42770] Typo in email.headerregistry docs

2020-12-28 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 3.0 -> 4.0 pull_requests: +22826 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23982 ___ Python tracker

[issue42770] Typo in email.headerregistry docs

2020-12-28 Thread Ammar Askar
Ammar Askar added the comment: Confirmed, the attribute under https://docs.python.org/3.10/library/email.headerregistry.html#email.headerregistry.ContentDispositionHeader is incorrect. bazwal, would you like to propose a patch to fix this? The code is here: https://github.com/python/cpython

[issue42770] Typo in email.headerregistry docs

2020-12-28 Thread bazwal
New submission from bazwal : The section for class email.headerregistry.ContentDispositionHeader has a typo in an attribute name: "content-disposition" should be corrected to "content_disposition". -- assignee: docs@python components: Documentation messages: 383910 nosy: bazwal, docs@