summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-01-25 23:24:31 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-01-25 23:24:31 (GMT)
commitbbd3aa8ece3ed4caf98158086c4599248eb9cddf (patch)
treee6ffd1db181cb5e9a83c00f71ac60bbc4db3d4e6 /Misc
parent07985ef387a87486a0e632844be03a8877e7f889 (diff)
parent7e4b9057b3180ed1b7b26dc8f9a2d2162d4e83b0 (diff)
downloadcpython-bbd3aa8ece3ed4caf98158086c4599248eb9cddf.zip
cpython-bbd3aa8ece3ed4caf98158086c4599248eb9cddf.tar.gz
cpython-bbd3aa8ece3ed4caf98158086c4599248eb9cddf.tar.bz2
Issue #23321: Fixed a crash in str.decode() when error handler returned
replacment string longer than mailformed input data.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 163aff4..3c08363 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #23321: Fixed a crash in str.decode() when error handler returned
+ replacment string longer than mailformed input data.
+
- Issue #22286: The "backslashreplace" error handlers now works with
decoding and translating.