summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-10-31 12:18:10 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-10-31 12:18:10 (GMT)
commit0e5eba25c76aa7936102975a8bfbd42f70a3b9e3 (patch)
tree6f1d5bf8cd75eb01e3db6d9227e43ce538d7205f /Doc
parent4827e488a4d1d82eb7bfeb194a7ad1d420535513 (diff)
downloadcpython-0e5eba25c76aa7936102975a8bfbd42f70a3b9e3.zip
cpython-0e5eba25c76aa7936102975a8bfbd42f70a3b9e3.tar.gz
cpython-0e5eba25c76aa7936102975a8bfbd42f70a3b9e3.tar.bz2
Fix more typos in whatsnew/3.5.rst
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.5.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index c820666..e1ae801 100644
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -860,7 +860,7 @@ The :class:`~collections.deque` class now defines
:meth:`~collections.deque.copy`, as well as supports ``+`` and ``*`` operators.
This allows deques to be recognized as a :class:`~collections.abc.MutableSequence`
and improves their substitutability for lists.
-(Contributed by Raymond Hettinger :issue:`23704`.)
+(Contributed by Raymond Hettinger in :issue:`23704`.)
Docstrings produced by :func:`~collections.namedtuple` can now be updated::
@@ -889,7 +889,7 @@ of :class:`tuple`, :class:`list`, etc.
A new :class:`~collections.abc.Generator` abstract base class. (Contributed
by Stefan Behnel in :issue:`24018`.)
-New :class:`~collections.abc.Awaitable` :class:`~collections.abc.Coroutine`,
+New :class:`~collections.abc.Awaitable`, :class:`~collections.abc.Coroutine`,
:class:`~collections.abc.AsyncIterator`, and
:class:`~collections.abc.AsyncIterable` abstract base classes.
(Contributed by Yury Selivanov in :issue:`24184`.)
@@ -1727,7 +1727,7 @@ the TLS handshake.
The new
:meth:`SSLSocket.selected_alpn_protocol() <ssl.SSLSocket.selected_alpn_protocol>`
returns the protocol that was selected during the TLS handshake.
-:data:`~ssl.HAS_ALPN` flag indicates whether APLN support is present.
+:data:`~ssl.HAS_ALPN` flag indicates whether ALPN support is present.
Other Changes
@@ -1782,7 +1782,7 @@ subprocess
----------
The new :func:`~subprocess.run` function has been added.
-It runs the specified command and and returns a
+It runs the specified command and returns a
:class:`~subprocess.CompletedProcess` object, which describes a finished
process. The new API is more consistent and is the recommended approach
to invoking subprocesses in Python code that does not need to maintain