]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-122706: fix docs for asyncio ssl sockets (GH-128092) (#128093)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 19 Dec 2024 12:55:54 +0000 (13:55 +0100)
committerGitHub <noreply@github.com>
Thu, 19 Dec 2024 12:55:54 +0000 (18:25 +0530)
gh-122706: fix docs for asyncio ssl sockets (GH-128092)
(cherry picked from commit 19c5134d57764d3db7b1cacec4f090c74849a5c1)

Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Doc/library/ssl.rst

index f78ab7b1fdf0a1f021a20fc01c692f09cff04b0d..a154b4df7fedabbb0afbb0c45d341bc0c950b6c5 100644 (file)
@@ -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.