https://github.com/python/cpython/commit/f8e7b5cc8dbba9f50ae33457cec12d04e445ca01 commit: f8e7b5cc8dbba9f50ae33457cec12d04e445ca01 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 <[email protected]> date: 2024-12-19T18:26:05+05:30 summary:
[3.13] gh-122706: fix docs for asyncio ssl sockets (GH-128092) (#128094) 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 b7fb1fc07d199f..f07d151a885692 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. _______________________________________________ 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]
