Skip to content

Commit c682840

Browse files
authored
[3.10] bpo-43215: Document Happy Eyeballs args of asyncio.open_connection (GH-24525) (GH-31869)
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com> (cherry picked from commit 3543ddb) Co-authored-by: Illia Volochii <illia.volochii@gmail.com>
1 parent d929aa7 commit c682840

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: Doc/library/asyncio-stream.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ and work with streams:
5151
.. coroutinefunction:: open_connection(host=None, port=None, *, \
5252
limit=None, ssl=None, family=0, proto=0, \
5353
flags=0, sock=None, local_addr=None, \
54-
server_hostname=None, ssl_handshake_timeout=None)
54+
server_hostname=None, ssl_handshake_timeout=None, \
55+
happy_eyeballs_delay=None, interleave=None)
5556

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

73+
.. versionadded:: 3.8
74+
Added *happy_eyeballs_delay* and *interleave* parameters.
75+
7276
.. versionchanged:: 3.10
7377
Removed the *loop* parameter.
7478

0 commit comments

Comments
 (0)