diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-05-09 03:16:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-09 03:16:26 (GMT) |
commit | cd110687126d9f19da42d8eb2404032e994ef28b (patch) | |
tree | 09abe87946fee8978128e3c7c4af387fee941fbd /Misc | |
parent | 158579654ded615f0f9fa13d674b06473f7b1620 (diff) | |
download | cpython-cd110687126d9f19da42d8eb2404032e994ef28b.zip cpython-cd110687126d9f19da42d8eb2404032e994ef28b.tar.gz cpython-cd110687126d9f19da42d8eb2404032e994ef28b.tar.bz2 |
bpo-38056: overhaul Error Handlers section in codecs documentation (GH-15732)
* Some handlers were wrongly described as text-encoding only, but actually they can also be used in text-decoding.
* Add more description to each handler.
* Add two REPL examples.
* Add indexes for Error Handler's name.
Co-authored-by: Kyle Stanley <aeros167@gmail.com>
Co-authored-by: Victor Stinner <vstinner@python.org>
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
(cherry picked from commit 5bc2390229bbcb4f13359e867fd8a140a1d5496b)
Co-authored-by: Ma Lin <animalize@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Documentation/2019-09-12-08-28-17.bpo-38056.6ktYkc.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2019-09-12-08-28-17.bpo-38056.6ktYkc.rst b/Misc/NEWS.d/next/Documentation/2019-09-12-08-28-17.bpo-38056.6ktYkc.rst new file mode 100644 index 0000000..2e6b70f --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2019-09-12-08-28-17.bpo-38056.6ktYkc.rst @@ -0,0 +1 @@ +Overhaul the :ref:`error-handlers` documentation in :mod:`codecs`. |