https://github.com/python/cpython/commit/34ea7bf56f468bbfa0941ad2eff71b2cf871438c
commit: 34ea7bf56f468bbfa0941ad2eff71b2cf871438c
branch: 3.12
author: Miss Islington (bot) <[email protected]>
committer: kumaraditya303 <[email protected]>
date: 2024-12-19T18:25:54+05:30
summary:

[3.12] gh-122706: fix docs for asyncio ssl sockets (GH-128092) (#128093)

gh-122706: fix docs for asyncio ssl sockets (GH-128092)
(cherry picked from commit 19c5134d57764d3db7b1cacec4f090c74849a5c1)

Co-authored-by: Kumar Aditya <[email protected]>

files:
M Doc/library/ssl.rst

diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index f78ab7b1fdf0a1..a154b4df7fedab 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -2369,8 +2369,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.

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to