Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[3.10] bpo-43215: Document Happy Eyeballs args of asyncio.open_connec…
…tion (GH-24525)

Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
(cherry picked from commit 3543ddb)

Co-authored-by: Illia Volochii <illia.volochii@gmail.com>
  • Loading branch information
illia-v committed Mar 14, 2022
commit 76f07e5e51971f001eccab40f1790e0307350d82
6 changes: 5 additions & 1 deletion Doc/library/asyncio-stream.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ and work with streams:
.. coroutinefunction:: open_connection(host=None, port=None, *, \
limit=None, ssl=None, family=0, proto=0, \
flags=0, sock=None, local_addr=None, \
server_hostname=None, ssl_handshake_timeout=None)
server_hostname=None, ssl_handshake_timeout=None, \
happy_eyeballs_delay=None, interleave=None)

Establish a network connection and return a pair of
``(reader, writer)`` objects.
Expand All @@ -69,6 +70,9 @@ and work with streams:
.. versionchanged:: 3.7
Added the *ssl_handshake_timeout* parameter.

.. versionadded:: 3.8
Added *happy_eyeballs_delay* and *interleave* parameters.

.. versionchanged:: 3.10
Removed the *loop* parameter.

Expand Down