summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-09 20:33:43 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-09 20:33:43 (GMT)
commitc9a8df24cc8c95efb63b9820d9381ad2f54e45c5 (patch)
tree590f0f94fd1907e7849a30f071ee6d27af1a3fbb /Misc/NEWS
parent8e0bb6a1e2907797cd6e4b7cc90539904e54db7e (diff)
downloadcpython-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/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cc18cf3..d0a31c1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.