diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-24 20:22:17 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-24 20:22:17 (GMT) |
commit | d48ba0bde5bd535e9aa4c90cb122c0197f862e68 (patch) | |
tree | 6efaaf33c793f24e6a13aff17d7aade3e4e62381 /Misc | |
parent | e6a06217d2adedbe4a07ad007eb8c9e6c4150052 (diff) | |
parent | 6bcbef7da0127272aa97cdd43ec529bfe92c3251 (diff) | |
download | cpython-d48ba0bde5bd535e9aa4c90cb122c0197f862e68.zip cpython-d48ba0bde5bd535e9aa4c90cb122c0197f862e68.tar.gz cpython-d48ba0bde5bd535e9aa4c90cb122c0197f862e68.tar.bz2 |
(Merge 3.1) 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
@@ -13,6 +13,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. - Correct lookup of __dir__ on objects. Among other things, this causes errors |