summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>2020-10-18 06:16:52 (GMT)
committerGitHub <noreply@github.com>2020-10-18 06:16:52 (GMT)
commit400175ad91c1aa8abc6dfce108446e4210d0c157 (patch)
tree2f9c7d1d95cff1abba04f5b2aa9f76d9edceda99 /Misc/NEWS.d
parent8f7eab788aedcf1a23ef9be767e1b3502a6bbd5c (diff)
downloadcpython-400175ad91c1aa8abc6dfce108446e4210d0c157.zip
cpython-400175ad91c1aa8abc6dfce108446e4210d0c157.tar.gz
cpython-400175ad91c1aa8abc6dfce108446e4210d0c157.tar.bz2
bpo-42065: Fix incorrectly formatted _codecs.charmap_decode error message (GH-19940)
(cherry picked from commit 3635388f52b42e5280229104747962117104c453) Co-authored-by: Max Bernstein <tekknolagi@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d')
-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.