diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-02 11:11:27 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-02 11:11:27 (GMT) |
commit | 5593d8aeb4bcc904ff58e8e3eb8b799a0aabc302 (patch) | |
tree | ad617343c26a37551383247908d741ab31234842 /Misc/NEWS | |
parent | 1c24bd02520a647415de5c220834d7bec265a8d0 (diff) | |
download | cpython-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/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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(). |