summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-04-22 19:41:01 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-04-22 19:41:01 (GMT)
commit158701d8866b0cb53953bf0ae0fd2834be766da1 (patch)
treec2acd31b7e74c1d499b7307d4d2a7e4cd6fa7c9a /Misc
parent754b98c9b4cb355880a464b9e4e9079d96ffc111 (diff)
downloadcpython-158701d8866b0cb53953bf0ae0fd2834be766da1.zip
cpython-158701d8866b0cb53953bf0ae0fd2834be766da1.tar.gz
cpython-158701d8866b0cb53953bf0ae0fd2834be766da1.tar.bz2
Merged revisions 80382 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r80382 | victor.stinner | 2010-04-22 21:38:16 +0200 (jeu., 22 avril 2010) | 3 lines Issue #8092: Fix PyUnicode_EncodeUTF8() to support error handler producing unicode string (eg. backslashreplace) ........
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 ab687ff..764e3a5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1.3?
Core and Builtins
-----------------
+- Issue #8092: Fix PyUnicode_EncodeUTF8() to support error handler producing
+ unicode string (eg. backslashreplace)
+
- Issue #8014: Setting a T_UINT or T_PYSSIZET attribute of an object with
PyMemberDefs could produce an internal error; raise TypeError instead.