summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-30 20:56:00 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-30 20:56:00 (GMT)
commite15dce3d18d333b91a567fb8d611ca74781e4f13 (patch)
tree332611b0ce447ea367d486b60a122aa897bec6c7 /Misc
parentebbb3b797297506b91c2b9256bcd0fe92e8b47b8 (diff)
downloadcpython-e15dce3d18d333b91a567fb8d611ca74781e4f13.zip
cpython-e15dce3d18d333b91a567fb8d611ca74781e4f13.tar.gz
cpython-e15dce3d18d333b91a567fb8d611ca74781e4f13.tar.bz2
Close #12171: IncrementalEncoder.reset() of CJK codecs (multibytecodec) calls
encreset() instead of decreset().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 785761c..e5e5aa9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -177,9 +177,12 @@ Core and Builtins
Library
-------
+- Issue #12171: IncrementalEncoder.reset() of CJK codecs (multibytecodec) calls
+ encreset() instead of decreset().
+
- Issue #12218: Removed wsgiref.egg-info.
-- Issue #12196: Add pipe2() to the os module.
+- Issue #12196: Add pipe2() to the os module.
- Issue #985064: Make plistlib more resilient to faulty input plists.
Patch by Mher Movsisyan.