Skip to content

Commit

Permalink
[3.9] bpo-43215: Document Happy Eyeballs args of asyncio.open_connect…
Browse files Browse the repository at this point in the history
…ion (GH-24525) (GH-31868)

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 authored Mar 14, 2022
1 parent 177be52 commit 649cc9d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 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, *, \
loop=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 @@ -73,6 +74,10 @@ and work with streams:

The *ssl_handshake_timeout* parameter.

.. versionadded:: 3.8

Added *happy_eyeballs_delay* and *interleave* parameters.

.. coroutinefunction:: start_server(client_connected_cb, host=None, \
port=None, *, loop=None, limit=None, \
family=socket.AF_UNSPEC, \
Expand Down

0 comments on commit 649cc9d

Please sign in to comment.