diff options
author | Elvis Pranskevichus <elvis@magic.io> | 2018-06-08 15:36:00 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2018-06-08 15:36:00 (GMT) |
commit | c0d062f523b16331444ff910e4596ee5608c8170 (patch) | |
tree | 3c9b1213ea9028cde5ce6f3ab19b0200cc73325d /Doc/whatsnew | |
parent | 6860629d87d0f6728ff7430453d4900b695adf7b (diff) | |
download | cpython-c0d062f523b16331444ff910e4596ee5608c8170.zip cpython-c0d062f523b16331444ff910e4596ee5608c8170.tar.gz cpython-c0d062f523b16331444ff910e4596ee5608c8170.tar.bz2 |
bpo-33736: Improve the documentation of asyncio stream APIs (GH-7326)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 9a6f542..8a3afdf 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -699,11 +699,12 @@ include: gained support for Unix sockets. (Contributed by Quentin Dawans in :issue:`31245`.) -* The :meth:`loop.create_connection() <asyncio.AbstractEventLoop.create_connection>`, +* The :func:`asyncio.open_connection`, :func:`asyncio.start_server` functions, + :meth:`loop.create_connection() <asyncio.AbstractEventLoop.create_connection>`, :meth:`loop.create_server() <asyncio.AbstractEventLoop.create_server>`, - :meth:`loop.create_unix_server() <asyncio.AbstractEventLoop.create_unix_server>`, and :meth:`loop.create_accepted_socket() <asyncio.BaseEventLoop.connect_accepted_socket>` - now accept the *ssl_handshake_timeout* keyword argument. + methods and their corresponding UNIX socket variants now accept the + *ssl_handshake_timeout* keyword argument. (Contributed by Neil Aspinall in :issue:`29970`.) * The new :meth:`Handle.cancelled() <asyncio.Handle.cancelled>` method returns |