summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-10-02 11:11:27 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-10-02 11:11:27 (GMT)
commit5593d8aeb4bcc904ff58e8e3eb8b799a0aabc302 (patch)
treead617343c26a37551383247908d741ab31234842 /Misc
parent1c24bd02520a647415de5c220834d7bec265a8d0 (diff)
downloadcpython-5593d8aeb4bcc904ff58e8e3eb8b799a0aabc302.zip
cpython-5593d8aeb4bcc904ff58e8e3eb8b799a0aabc302.tar.gz
cpython-5593d8aeb4bcc904ff58e8e3eb8b799a0aabc302.tar.bz2
Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replace
UTF-16 surrogate pairs by single non-BMP characters for 16 bits Py_UNICODE and 32 bits wchar_t (eg. Linux in narrow build).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 5 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1d943b0..efb6791 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,10 +10,14 @@ What's New in Python 3.2 Alpha 3?
Core and Builtins
-----------------
+- Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replace
+ UTF-16 surrogate pairs by single non-BMP characters for 16 bits Py_UNICODE
+ and 32 bits wchar_t (eg. Linux in narrow build).
+
- Issue #10006: type.__abstractmethods__ now raises an AttributeError.
- Issue #10003: Allow handling of SIGBREAK on Windows. Fixes a regression
- introduced by issue #9324.
+ introduced by issue #9324.
- Issue #9979: Create function PyUnicode_AsWideCharString().