diff options
author | Éric Araujo <merwok@netwok.org> | 2011-10-04 23:04:18 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-10-04 23:04:18 (GMT) |
commit | 5043f0904ba2254cbd65b41e3870c62a682e1c37 (patch) | |
tree | f82ba5d047acabca960ee8907bd6f531fad2dcd1 /Doc/whatsnew | |
parent | b07b97f3a40d8970e5d766304c04a525c043c753 (diff) | |
download | cpython-5043f0904ba2254cbd65b41e3870c62a682e1c37.zip cpython-5043f0904ba2254cbd65b41e3870c62a682e1c37.tar.gz cpython-5043f0904ba2254cbd65b41e3870c62a682e1c37.tar.bz2 |
More info about PEP 393 in whatsnew and NEWS
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index f208660..a3abc11 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -49,14 +49,15 @@ This article explains the new features in Python 3.3, compared to 3.2. -PEP XXX: Stub -============= - - PEP 393: Flexible String Representation ======================================= -XXX Give a short introduction about :pep:`393`. +[Abstract copied from the PEP: The Unicode string type is changed to support +multiple internal representations, depending on the character with the largest +Unicode ordinal (1, 2, or 4 bytes). This allows a space-efficient +representation in common cases, but gives access to full UCS-4 on all systems. +For compatibility with existing APIs, several representations may exist in +parallel; over time, this compatibility should be phased out.] PEP 393 is fully backward compatible. The legacy API should remain available at least five years. Applications using the legacy API will not |