summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-10-28 21:59:39 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-10-28 21:59:39 (GMT)
commitb2e796aa27af76bdf0386a34a23415e3efbcc75c (patch)
treeb0645c75593e8c01ba1aaf730fdc67652c2e3227 /Misc/NEWS
parent7b1b094ff17035d35c3736bcca12229fa360d33a (diff)
downloadcpython-b2e796aa27af76bdf0386a34a23415e3efbcc75c.zip
cpython-b2e796aa27af76bdf0386a34a23415e3efbcc75c.tar.gz
cpython-b2e796aa27af76bdf0386a34a23415e3efbcc75c.tar.bz2
in wide builds, avoid storing high unicode characters from source code with surrogates
This is accomplished by decoding with utf-32 instead of utf-16 on all builds. The patch is by Adam Olsen.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 96320f7..030430a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Issue #3297: On wide unicode builds, do not split unicode characters into
+ surrogates.
+
- Remove length limitation when constructing a complex number from a string.
- Issue #1087418: Boost performance of bitwise operations for longs.