diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-20 23:21:08 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-20 23:21:08 (GMT) |
commit | df80706f141bf3de5326750e4646161355d65881 (patch) | |
tree | 6a8409b69e28acd64efa8c0c33627657cbe60279 /Misc/NEWS | |
parent | 254dd59068e027f98a1f9ac5b81e43e4685e5ac6 (diff) | |
parent | a1543cdcd65d9a2be302be0da0cfb9c53c17f806 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |