diff options
author | Benjamin Peterson <benjamin@python.org> | 2017-06-11 07:24:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-11 07:24:38 (GMT) |
commit | fdfca5f0ffa831a3365cbabf9ed8fd05e9c4da49 (patch) | |
tree | 534e08560e9b3501e80f4b72e3b8bbe72994133f /Doc | |
parent | dc1da9adc37abe30e97a0c2ea5331aeef7e062bc (diff) | |
download | cpython-fdfca5f0ffa831a3365cbabf9ed8fd05e9c4da49.zip cpython-fdfca5f0ffa831a3365cbabf9ed8fd05e9c4da49.tar.gz cpython-fdfca5f0ffa831a3365cbabf9ed8fd05e9c4da49.tar.bz2 |
remove extra word (#2101)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ssl.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 58720ad..729a239 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -2112,8 +2112,8 @@ provided. When compared to :class:`SSLSocket`, this object lacks the following features: - - Any form of network IO including; ``recv()`` and ``send()`` read and write - only to the underlying :class:`MemoryBIO` buffers. + - Any form of network IO; ``recv()`` and ``send()`` read and write only to + the underlying :class:`MemoryBIO` buffers. - There is no *do_handshake_on_connect* machinery. You must always manually call :meth:`~SSLSocket.do_handshake` to start the handshake. |