From: Benjamin Peterson Date: Sun, 11 Jun 2017 07:15:14 +0000 (-0700) Subject: clarify recv() and send() on SSLObject (#2100) X-Git-Tag: v3.7.0a1~627 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dc1da9adc37abe30e97a0c2ea5331aeef7e062bc;p=thirdparty%2FPython%2Fcpython.git clarify recv() and send() on SSLObject (#2100) SSLObject has recv() and send(), but they don't do any network io. --- diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 8cb31869d3ec..58720ad7bbd9 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 incluging methods such as ``recv()`` and - ``send()``. + - Any form of network IO including; ``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.