summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-02-20 23:19:58 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-02-20 23:19:58 (GMT)
commita1543cdcd65d9a2be302be0da0cfb9c53c17f806 (patch)
tree7ba2b613d33502b42980963742118e5998aeac25 /Misc
parenta3712a9a6c9a05de287d2403cdb5aecbc417ce93 (diff)
downloadcpython-a1543cdcd65d9a2be302be0da0cfb9c53c17f806.zip
cpython-a1543cdcd65d9a2be302be0da0cfb9c53c17f806.tar.gz
cpython-a1543cdcd65d9a2be302be0da0cfb9c53c17f806.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')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bcabefa..f1426d2 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.