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: connect_accepted_socket() missing from AbstractEventLoop
Type: behavior Stage: resolved
Components: asyncio Versions: Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: alex.gronholm, asvetlov, yselivanov
Priority: normal Keywords: patch

Created on 2020-07-18 14:18 by alex.gronholm, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 21533 merged alex.gronholm, 2020-07-18 14:33
Messages (2)
msg373904 - (view) Author: Alex Grönholm (alex.gronholm) * Date: 2020-07-18 14:18
The connect_accepted_socket() method seems to be missing from the AbstractEventLoop ABC. I assume this was a simple mistake of omission. I will ready a PR to add it.
msg381890 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2020-11-26 10:09
New changeset e3ef4d7f653976ac0ccacc4e3fde06bf0e0f139b by Alex Grönholm in branch 'master':
bpo-41332: Added missing connect_accepted_socket() to AbstractEventLoop (GH-21533)
https://github.com/python/cpython/commit/e3ef4d7f653976ac0ccacc4e3fde06bf0e0f139b
History
Date User Action Args
2022-04-11 14:59:33adminsetgithub: 85504
2020-11-26 10:09:47asvetlovsetstatus: open -> closed
stage: patch review -> resolved
resolution: fixed
versions: + Python 3.10, - Python 3.5, Python 3.6, Python 3.7, Python 3.8, Python 3.9
2020-11-26 10:09:27asvetlovsetmessages: + msg381890
2020-07-18 14:33:06alex.gronholmsetkeywords: + patch
stage: patch review
pull_requests: + pull_request20671
2020-07-18 14:18:13alex.gronholmcreate