summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:10:23 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:10:23 (GMT)
commitd65c9496da3485ac077fa8fd374b061afdd3605e (patch)
tree70d446dd505e744bcdf7638e6dc31fde8d4d9310 /Doc/whatsnew
parent7462b64911f1e2df2de2285ddbf8b156b5cdc418 (diff)
downloadcpython-d65c9496da3485ac077fa8fd374b061afdd3605e.zip
cpython-d65c9496da3485ac077fa8fd374b061afdd3605e.tar.gz
cpython-d65c9496da3485ac077fa8fd374b061afdd3605e.tar.bz2
Issue #25523: Further a-to-an corrections.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/2.7.rst2
-rw-r--r--Doc/whatsnew/3.3.rst2
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.