diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-24 20:17:55 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-24 20:17:55 (GMT) |
commit | 6bcbef7da0127272aa97cdd43ec529bfe92c3251 (patch) | |
tree | 6649bf8138bd5830b8ac02cb9a9fdac41779b955 /Misc | |
parent | f8473933083cd045bdb0bf0dda8516e268846bd5 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |