diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:39:05 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:39:05 (GMT) |
commit | a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030 (patch) | |
tree | e8ac219e151be6bdf4ea4e3fbc229f247e0b7b4b /Doc/whatsnew | |
parent | d2ad5718ad955a13cf570bacad1d7800d995da33 (diff) | |
parent | d65c9496da3485ac077fa8fd374b061afdd3605e (diff) | |
download | cpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.zip cpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.tar.gz cpython-a84f6c3dd3ef02bdbbc67b4cd1223749f3c39030.tar.bz2 |
Issue #25523: Merge a-to-an corrections from 3.4.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/2.7.rst | 2 | ||||
-rw-r--r-- | Doc/whatsnew/3.3.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index fb0551e..3966cb4 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -1118,7 +1118,7 @@ changes, or look through the Subversion logs for all the details. (Fixed by Daniel Stutzbach; :issue:`8729`.) * Constructors for the parsing classes in the :mod:`ConfigParser` module now - take a *allow_no_value* parameter, defaulting to false; if true, + take an *allow_no_value* parameter, defaulting to false; if true, options without values will be allowed. For example:: >>> import ConfigParser, StringIO diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 48379d9..094eff8 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -2155,7 +2155,7 @@ Major performance enhancements have been added: * encode an ASCII string to UTF-8 doesn't need to encode characters anymore, the UTF-8 representation is shared with the ASCII representation * the UTF-8 encoder has been optimized - * repeating a single ASCII letter and getting a substring of a ASCII strings + * repeating a single ASCII letter and getting a substring of an ASCII string is 4 times faster * UTF-8 is now 2x to 4x faster. UTF-16 encoding is now up to 10x faster. |