summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-24 20:17:55 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-24 20:17:55 (GMT)
commit6bcbef7da0127272aa97cdd43ec529bfe92c3251 (patch)
tree6649bf8138bd5830b8ac02cb9a9fdac41779b955 /Misc
parentf8473933083cd045bdb0bf0dda8516e268846bd5 (diff)
downloadcpython-6bcbef7da0127272aa97cdd43ec529bfe92c3251.zip
cpython-6bcbef7da0127272aa97cdd43ec529bfe92c3251.tar.gz
cpython-6bcbef7da0127272aa97cdd43ec529bfe92c3251.tar.bz2
Issue #12100: Don't reset incremental encoders of CJK codecs at each call to
their encode() method anymore, but continue to call the reset() method if the final argument is True.
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 17f933a..7862e21 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -75,6 +75,10 @@ Core and Builtins
Library
-------
+- Issue #12100: Don't reset incremental encoders of CJK codecs at each call to
+ their encode() method anymore, but continue to call the reset() method if the
+ final argument is True.
+
- Issue #5715: In socketserver, close the server socket in the child process.
- Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymore