summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-01 17:15:11 (GMT)
committerGeorg Brandl <georg@python.org>2014-10-01 17:15:11 (GMT)
commitff3e5e3779ae6fab9f5d33149c95441eb847c196 (patch)
treefc9c35a851e24acff88fb5f80d14d1699c316b7f /Misc
parent51c116223e7698ce3cbbac46e8a6779aea8ec9c6 (diff)
downloadcpython-ff3e5e3779ae6fab9f5d33149c95441eb847c196.zip
cpython-ff3e5e3779ae6fab9f5d33149c95441eb847c196.tar.gz
cpython-ff3e5e3779ae6fab9f5d33149c95441eb847c196.tar.bz2
Fix unicode_aswidechar() for 4b unicode and 2b wchar_t (AIX).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5b84414..14d9630 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -7,6 +7,12 @@ What's New in Python 3.2.6?
*Release date: TBD*
+Core and Builtins
+-----------------
+
+- Issue #19529: Fix a potential crash in converting Unicode objects to wchar_t
+ when Py_UNICODE is 4 bytes but wchar_t is 2 bytes, for example on AIX.
+
Library
-------