]> granicus.if.org Git - python/commitdiff
More info about PEP 393 in whatsnew and NEWS
authorÉric Araujo <merwok@netwok.org>
Tue, 4 Oct 2011 23:04:18 +0000 (01:04 +0200)
committerÉric Araujo <merwok@netwok.org>
Tue, 4 Oct 2011 23:04:18 +0000 (01:04 +0200)
Doc/whatsnew/3.3.rst
Misc/NEWS

index f2086601f8563502b0146acefe7690935e1a7852..a3abc11b005bb88d7343a89234430fafede9cbff 100644 (file)
 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
index 025d42a27076118f620708bd2fe9d90f04f6e451..0b9cfbdbbcf632f3a8b64931bd9e54f2e68d6ddd 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1261,6 +1261,8 @@ Library
 Build
 -----
 
+- PEP 393: the configure option --with-wide-unicode is removed.
+
 - Issue #12852: Set _XOPEN_SOURCE to 700, instead of 600, to get POSIX 2008
   functions on OpenBSD (e.g. fdopendir).