diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-10-28 21:59:39 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-10-28 21:59:39 (GMT) |
commit | b2e796aa27af76bdf0386a34a23415e3efbcc75c (patch) | |
tree | b0645c75593e8c01ba1aaf730fdc67652c2e3227 /Misc/NEWS | |
parent | 7b1b094ff17035d35c3736bcca12229fa360d33a (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |