summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-02-20 23:21:08 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-02-20 23:21:08 (GMT)
commitdf80706f141bf3de5326750e4646161355d65881 (patch)
tree6a8409b69e28acd64efa8c0c33627657cbe60279 /Misc/NEWS
parent254dd59068e027f98a1f9ac5b81e43e4685e5ac6 (diff)
parenta1543cdcd65d9a2be302be0da0cfb9c53c17f806 (diff)
downloadcpython-df80706f141bf3de5326750e4646161355d65881.zip
cpython-df80706f141bf3de5326750e4646161355d65881.tar.gz
cpython-df80706f141bf3de5326750e4646161355d65881.tar.bz2
Issue #23215: Multibyte codecs with custom error handlers that ignores errors
consumed too much memory and raised SystemError or MemoryError. Original patch by Aleksi Torhamo.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3747e1e..c4ae6f2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,10 @@ Core and Builtins
Library
-------
+- Issue #23215: Multibyte codecs with custom error handlers that ignores errors
+ consumed too much memory and raised SystemError or MemoryError.
+ Original patch by Aleksi Torhamo.
+
- Issue #5700: io.FileIO() called flush() after closing the file.
flush() was not called in close() if closefd=False.