This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: typo in codecs documentation
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Gronahak, docs@python, miss-islington, pablogsal, terry.reedy
Priority: normal Keywords: patch

Created on 2021-09-24 08:52 by Gronahak, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 28555 merged terry.reedy, 2021-09-25 00:23
PR 28556 merged miss-islington, 2021-09-25 01:56
PR 28557 merged miss-islington, 2021-09-25 01:56
Messages (6)
msg402545 - (view) Author: HugoThiolliere (Gronahak) Date: 2021-09-24 08:52
There is a typo in https://docs.python.org/3/library/codecs.html#encodings-and-unicode

The first sentence in the last paragraph before the table reads : "There’s another encoding that is able to encoding the full range of Unicode characters"

When it should read "There’s another encoding that is able to encode the full range of Unicode characters"
msg402598 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2021-09-25 00:13
Thanks for the report.  I will fix this.
msg402599 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2021-09-25 01:56
New changeset 4c0fc65cd8a6d4c18330505576ccd4b46abeec1c by Terry Jan Reedy in branch 'main':
bpo-45277: Fix typo in codecs doc (GH-28555)
https://github.com/python/cpython/commit/4c0fc65cd8a6d4c18330505576ccd4b46abeec1c
msg402600 - (view) Author: miss-islington (miss-islington) Date: 2021-09-25 02:16
New changeset 371ca3b54d355476cc735cb932e80f5cd16310da by Miss Islington (bot) in branch '3.10':
bpo-45277: Fix typo in codecs doc (GH-28555)
https://github.com/python/cpython/commit/371ca3b54d355476cc735cb932e80f5cd16310da
msg402601 - (view) Author: miss-islington (miss-islington) Date: 2021-09-25 02:22
New changeset 2a7d985bb3a1d85d63f135956750b330408702e6 by Miss Islington (bot) in branch '3.9':
bpo-45277: Fix typo in codecs doc (GH-28555)
https://github.com/python/cpython/commit/2a7d985bb3a1d85d63f135956750b330408702e6
msg403178 - (view) Author: Pablo Galindo Salgado (pablogsal) * (Python committer) Date: 2021-10-04 19:18
New changeset 0b568530ecb6ccc696771acf8018ec6fff1a0a5f by Pablo Galindo (Miss Islington (bot)) in branch '3.10':
bpo-45277: Fix typo in codecs doc (GH-28555)
https://github.com/python/cpython/commit/0b568530ecb6ccc696771acf8018ec6fff1a0a5f
History
Date User Action Args
2022-04-11 14:59:50adminsetgithub: 89440
2021-10-04 19:18:44pablogsalsetnosy: + pablogsal
messages: + msg403178
2021-09-25 02:33:44terry.reedysetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-09-25 02:22:58miss-islingtonsetmessages: + msg402601
2021-09-25 02:16:56miss-islingtonsetmessages: + msg402600
2021-09-25 01:56:39miss-islingtonsetpull_requests: + pull_request26940
2021-09-25 01:56:34miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request26939
2021-09-25 01:56:17terry.reedysetmessages: + msg402599
2021-09-25 00:23:47terry.reedysetkeywords: + patch
stage: patch review
pull_requests: + pull_request26938
2021-09-25 00:13:31terry.reedysetnosy: + terry.reedy
messages: + msg402598
2021-09-24 08:52:55Gronahakcreate