gh-122706: fix docs for asyncio ssl sockets (#128092)

This commit is contained in:
Kumar Aditya 2024-12-19 18:15:36 +05:30 committed by GitHub
parent 3c168f7f79
commit 19c5134d57
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -2508,8 +2508,8 @@ thus several things you need to be aware of:
.. seealso::
The :mod:`asyncio` module supports :ref:`non-blocking SSL sockets
<ssl-nonblocking>` and provides a
higher level API. It polls for events using the :mod:`selectors` module and
<ssl-nonblocking>` and provides a higher level :ref:`Streams API <asyncio-streams>`.
It polls for events using the :mod:`selectors` module and
handles :exc:`SSLWantWriteError`, :exc:`SSLWantReadError` and
:exc:`BlockingIOError` exceptions. It runs the SSL handshake asynchronously
as well.