Skip to content

Commit 2737291

Browse files
authored
backport ssl doc fixes (#2117)
* clarify recv() and send() on SSLObject (#2100) SSLObject has recv() and send(), but they don't do any network io. * remove extra word (#2101)
1 parent 57d8de8 commit 2737291

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/ssl.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2107,8 +2107,8 @@ provided.
21072107
When compared to :class:`SSLSocket`, this object lacks the following
21082108
features:
21092109

2110-
- Any form of network IO incluging methods such as ``recv()`` and
2111-
``send()``.
2110+
- Any form of network IO; ``recv()`` and ``send()`` read and write only to
2111+
the underlying :class:`MemoryBIO` buffers.
21122112

21132113
- There is no *do_handshake_on_connect* machinery. You must always manually
21142114
call :meth:`~SSLSocket.do_handshake` to start the handshake.

0 commit comments

Comments
 (0)