This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Document Happy Eyeballs arguments of asyncio.open_connection
Type: enhancement Stage: resolved
Components: asyncio, Documentation Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: asvetlov, docs@python, illia-v, yselivanov
Priority: normal Keywords: patch

Created on 2021-02-13 15:16 by illia-v, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 24525 merged illia-v, 2021-02-13 15:19
PR 31868 merged illia-v, 2022-03-14 11:14
PR 31869 merged illia-v, 2022-03-14 11:17
Messages (4)
msg386926 - (view) Author: Illia Volochii (illia-v) * Date: 2021-02-13 15:16
The problem is similar to https://bugs.python.org/issue39128.

It is not documented that asyncio.open_connection accepts happy_eyeballs_delay and interleave that are passed to loop.create_connection.

https://docs.python.org/3/library/asyncio-stream.html#asyncio.open_connection
msg415020 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2022-03-12 23:55
New changeset 3543ddb4c4ebc26fb2d6c67a97e66f5267876f72 by Illia Volochii in branch 'main':
bpo-43215: Document Happy Eyeballs args of asyncio.open_connection (GH-24525)
https://github.com/python/cpython/commit/3543ddb4c4ebc26fb2d6c67a97e66f5267876f72
msg415134 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2022-03-14 13:15
New changeset 649cc9d688f79765cf052429683b708678c26fbd by Illia Volochii in branch '3.9':
[3.9] bpo-43215: Document Happy Eyeballs args of asyncio.open_connection (GH-24525) (GH-31868)
https://github.com/python/cpython/commit/649cc9d688f79765cf052429683b708678c26fbd
msg415135 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2022-03-14 13:16
New changeset c6828408342cb1a2f8ba5038adccfbc1a95250cc by Illia Volochii in branch '3.10':
[3.10] bpo-43215: Document Happy Eyeballs args of asyncio.open_connection (GH-24525) (GH-31869)
https://github.com/python/cpython/commit/c6828408342cb1a2f8ba5038adccfbc1a95250cc
History
Date User Action Args
2022-04-11 14:59:41adminsetgithub: 87381
2022-03-14 13:16:33asvetlovsetmessages: + msg415135
2022-03-14 13:15:55asvetlovsetmessages: + msg415134
2022-03-14 11:17:42illia-vsetpull_requests: + pull_request29967
2022-03-14 11:14:42illia-vsetpull_requests: + pull_request29966
2022-03-12 23:56:32asvetlovsetstatus: open -> closed
stage: patch review -> resolved
resolution: fixed
versions: - Python 3.8, Python 3.9, Python 3.10
2022-03-12 23:55:08asvetlovsetmessages: + msg415020
2021-06-29 14:39:27illia-vsetversions: + Python 3.11
2021-02-13 15:19:35illia-vsetkeywords: + patch
stage: patch review
pull_requests: + pull_request23310
2021-02-13 15:16:36illia-vcreate