]> granicus.if.org Git - python/commitdiff
clarify recv() and send() on SSLObject (#2100)
authorBenjamin Peterson <benjamin@python.org>
Sun, 11 Jun 2017 07:15:14 +0000 (00:15 -0700)
committerGitHub <noreply@github.com>
Sun, 11 Jun 2017 07:15:14 +0000 (00:15 -0700)
SSLObject has recv() and send(), but they don't do any network io.

Doc/library/ssl.rst

index 8cb31869d3ecc6d5cf9ef2adf46df740e537e940..58720ad7bbd94ec103e24fe2efb0eec8fa5e2c90 100644 (file)
@@ -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.