summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-07-28 01:55:43 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-07-28 01:55:43 (GMT)
commit082a65ab1fd8c54df7a128d0e813061db9bfbba8 (patch)
treeddc1160b3dcc9b9f561432cb1aef6281444ffefd /Misc
parent7e384677cd9036ac3990620030239abded463eb2 (diff)
downloadcpython-082a65ab1fd8c54df7a128d0e813061db9bfbba8.zip
cpython-082a65ab1fd8c54df7a128d0e813061db9bfbba8.tar.gz
cpython-082a65ab1fd8c54df7a128d0e813061db9bfbba8.tar.bz2
Merged revisions 83198 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/release27-maint ........ r83198 | victor.stinner | 2010-07-28 03:39:45 +0200 (mer., 28 juil. 2010) | 3 lines Issue #6213: Implement getstate() and setstate() methods of utf-8-sig and utf-16 incremental encoders. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2df3b09..8bc2d61 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6.6 alpha 1?
Core and Builtins
-----------------
+- Issue #6213: Implement getstate() and setstate() methods of utf-8-sig and
+ utf-16 incremental encoders.
+
- Issue #8271: during the decoding of an invalid UTF-8 byte sequence, only the
start byte and the continuation byte(s) are now considered invalid, instead
of the number of bytes specified by the start byte.