summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-03-05 23:41:50 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-03-05 23:41:50 (GMT)
commit313cac88c524dd1d3c9810109de3f9c310d73413 (patch)
treede252eb9b34fe5be72a84785175975fb408723ed /Misc
parente5c0533b5887fae64df7bf0d69a307f0a63c77e5 (diff)
downloadcpython-313cac88c524dd1d3c9810109de3f9c310d73413.zip
cpython-313cac88c524dd1d3c9810109de3f9c310d73413.tar.gz
cpython-313cac88c524dd1d3c9810109de3f9c310d73413.tar.bz2
Issue #17223: Fix PyUnicode_FromUnicode() on Windows (16-bit wchar_t type)
to reject invalid UTF-16 surrogate.
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 a0dd2f6..d858cd2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
+- Issue #17223: Fix PyUnicode_FromUnicode() on Windows (16-bit wchar_t type)
+ to reject invalid UTF-16 surrogate.
+
- Issue #17032: The "global" in the "NameError: global name 'x' is not defined"
error message has been removed. Patch by Ram Rachum.