diff options
author | Cody Scott <cody.j.b.scott@gmail.com> | 2017-11-09 18:58:59 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-11-09 18:58:59 (GMT) |
commit | 72fa3014d5afa5e9ee407dee132991185da33c10 (patch) | |
tree | 60fdad910f5cc5c554228f9796f84a27afe3eeda /Doc | |
parent | 01ae58d44622a37304c74b2d8ed32e97a7fe1969 (diff) | |
download | cpython-72fa3014d5afa5e9ee407dee132991185da33c10.zip cpython-72fa3014d5afa5e9ee407dee132991185da33c10.tar.gz cpython-72fa3014d5afa5e9ee407dee132991185da33c10.tar.bz2 |
Fix phrasing in Doc/whatsnew/3.7.rst (GH-4318)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index d325fdc..f6d051d 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -441,8 +441,8 @@ Optimizations INADA Naoki in :issue:`26110`.) * Searching some unlucky Unicode characters (like Ukrainian capital "Є") - in a string was to 25 times slower than searching other characters. - Now it is slower only by 3 times in worst case. + in a string was up to 25 times slower than searching other characters. + Now it is slower only by 3 times in the worst case. (Contributed by Serhiy Storchaka in :issue:`24821`.) * Fast implementation from standard C library is now used for functions @@ -463,7 +463,7 @@ Optimizations * :func:`re.compile` now converts ``flags`` parameter to int object if it is ``RegexFlag``. It is now as fast as Python 3.5, and faster than - Python 3.6 about 10% depending on the pattern. + Python 3.6 by about 10% depending on the pattern. (Contributed by INADA Naoki in :issue:`31671`.) * :meth:`selectors.EpollSelector.modify`, :meth:`selectors.PollSelector.modify` |