diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-02-10 05:44:01 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-02-10 05:44:01 +0000 |
commit | 4e214c5025aeeeb69562dd0c46ae0918881d0bae (patch) | |
tree | 08a185f35371ce1673652839703b84d6b452212c /Doc/whatsnew/3.3.rst | |
parent | 6d6e59b7ce66c18073cf743cf4a98c57c17d85c3 (diff) | |
download | cpython-4e214c5025aeeeb69562dd0c46ae0918881d0bae.tar.gz |
Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similar
The original form is incorrect grammar and feels awkward, even though the
meaning is clear.
Diffstat (limited to 'Doc/whatsnew/3.3.rst')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 094eff87db..6ee40cd530 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1528,7 +1528,7 @@ by Petri Lehtinen in :issue:`12021`.) multiprocessing --------------- -The new :func:`multiprocessing.connection.wait` function allows to poll +The new :func:`multiprocessing.connection.wait` function allows polling multiple objects (such as connections, sockets and pipes) with a timeout. (Contributed by Richard Oudkerk in :issue:`12328`.) @@ -1715,8 +1715,8 @@ pickle ------ :class:`pickle.Pickler` objects now have an optional -:attr:`~pickle.Pickler.dispatch_table` attribute allowing to set per-pickler -reduction functions. +:attr:`~pickle.Pickler.dispatch_table` attribute allowing per-pickler +reduction functions to be set. (Contributed by Richard Oudkerk in :issue:`14166`.) |