summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorMax Bernstein <tekknolagi@users.noreply.github.com>2020-10-17 20:38:21 (GMT)
committerGitHub <noreply@github.com>2020-10-17 20:38:21 (GMT)
commit3635388f52b42e5280229104747962117104c453 (patch)
treec56705fffca5862af09fd72974e66b439491d813 /Misc/NEWS.d/next
parent975d10a4f8f5d99b01d02fc5f99305a86827f28e (diff)
downloadcpython-3635388f52b42e5280229104747962117104c453.zip
cpython-3635388f52b42e5280229104747962117104c453.tar.gz
cpython-3635388f52b42e5280229104747962117104c453.tar.bz2
bpo-42065: Fix incorrectly formatted _codecs.charmap_decode error message (GH-19940)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2020-10-17-23-17-18.bpo-42065.85BsRA.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-10-17-23-17-18.bpo-42065.85BsRA.rst b/Misc/NEWS.d/next/Library/2020-10-17-23-17-18.bpo-42065.85BsRA.rst
new file mode 100644
index 0000000..83c86c0
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-10-17-23-17-18.bpo-42065.85BsRA.rst
@@ -0,0 +1,3 @@
+Fix an incorrectly formatted error from :meth:`_codecs.charmap_decode` when
+called with a mapped value outside the range of valid Unicode code points.
+PR by Max Bernstein.