diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-09 20:33:43 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-09 20:33:43 (GMT) |
commit | c9a8df24cc8c95efb63b9820d9381ad2f54e45c5 (patch) | |
tree | 590f0f94fd1907e7849a30f071ee6d27af1a3fbb /Misc/NEWS | |
parent | 8e0bb6a1e2907797cd6e4b7cc90539904e54db7e (diff) | |
download | cpython-c9a8df24cc8c95efb63b9820d9381ad2f54e45c5.zip cpython-c9a8df24cc8c95efb63b9820d9381ad2f54e45c5.tar.gz cpython-c9a8df24cc8c95efb63b9820d9381ad2f54e45c5.tar.bz2 |
Merged revisions 84655 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84655 | antoine.pitrou | 2010-09-09 22:30:23 +0200 (jeu., 09 sept. 2010) | 6 lines
Issue #9804: ascii() now always represents unicode surrogate pairs as
a single `\UXXXXXXXX`, regardless of whether the character is printable
or not. Also, the "backslashreplace" error handler now joins surrogate
pairs into a single character on UCS-2 builds.
........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,11 @@ What's New in Python 3.1.3? Core and Builtins ----------------- +- Issue #9804: ascii() now always represents unicode surrogate pairs as + a single ``\UXXXXXXXX``, regardless of whether the character is printable + or not. Also, the "backslashreplace" error handler now joins surrogate + pairs into a single character on UCS-2 builds. + - Issue #9797: pystate.c wrongly assumed that zero couldn't be a valid thread-local storage key. |