summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorKumar Aditya <kumaraditya@python.org>2024-12-19 12:45:36 (GMT)
committerGitHub <noreply@github.com>2024-12-19 12:45:36 (GMT)
commit19c5134d57764d3db7b1cacec4f090c74849a5c1 (patch)
tree6929ad026c767488aa3750fc9b6205ea191a3d08 /Doc/library
parent3c168f7f79d1da2323d35dcf88c2d3c8730e5df6 (diff)
downloadcpython-19c5134d57764d3db7b1cacec4f090c74849a5c1.zip
cpython-19c5134d57764d3db7b1cacec4f090c74849a5c1.tar.gz
cpython-19c5134d57764d3db7b1cacec4f090c74849a5c1.tar.bz2
gh-122706: fix docs for asyncio ssl sockets (#128092)
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/ssl.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index b7fb1fc..f07d151 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -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.