diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-07-04 21:26:43 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-07-04 21:26:43 (GMT) |
commit | a4db68622c585e1bb526ef89f5d5ccf602906110 (patch) | |
tree | 3c2f15bbc29fec0bd7d127d7e6e540fc626d6665 /Misc | |
parent | 142957ce952c067414df3503431ab36a91c9c40c (diff) | |
download | cpython-a4db68622c585e1bb526ef89f5d5ccf602906110.zip cpython-a4db68622c585e1bb526ef89f5d5ccf602906110.tar.gz cpython-a4db68622c585e1bb526ef89f5d5ccf602906110.tar.bz2 |
Issue #3280: like chr() already does, the "%c" format now accepts the full unicode range
even on "narrow Unicode" builds; the result is a pair of UTF-16 surrogates.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,11 @@ What's new in Python 3.0b2? Core and Builtins ----------------- +- Issue #3280: like chr(), the "%c" format now accepts unicode code points + beyond the Basic Multilingual Plane (above 0xffff) on all configurations. On + "narrow Unicode" builds, the result is a string of 2 code units, forming a + UTF-16 surrogate pair. + - Issue #3282: str.isprintable() should return False for undefined Unicode characters. |