]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-122706: fix docs for asyncio ssl sockets (#128092)
authorKumar Aditya <kumaraditya@python.org>
Thu, 19 Dec 2024 12:45:36 +0000 (18:15 +0530)
committerGitHub <noreply@github.com>
Thu, 19 Dec 2024 12:45:36 +0000 (12:45 +0000)
Doc/library/ssl.rst

index b7fb1fc07d199f47cc743eceb53571a64a1ea9ea..f07d151a885692e6140e050c24392bae7731f4b8 100644 (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.