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: Return a safe proxy over a socket from get_extra_info('socket')
Type: Stage: resolved
Components: asyncio Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, miss-islington, yselivanov
Priority: normal Keywords: patch

Created on 2019-05-23 22:46 by yselivanov, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 13530 merged yselivanov, 2019-05-23 22:48
Messages (2)
msg343332 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2019-05-23 22:46
Currently asyncio exposes the underlying transport socket directly, providing a way to modify (in a potentially disruptive way) the underlying transport connection.
msg343627 - (view) Author: miss-islington (miss-islington) Date: 2019-05-27 13:57
New changeset 8cd5165ba05ff57cfdbbc71c393bddad1ce1ab87 by Miss Islington (bot) (Yury Selivanov) in branch 'master':
bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') (GH-13530)
https://github.com/python/cpython/commit/8cd5165ba05ff57cfdbbc71c393bddad1ce1ab87
History
Date User Action Args
2022-04-11 14:59:15adminsetgithub: 81208
2019-05-27 13:57:27miss-islingtonsetnosy: + miss-islington
messages: + msg343627
2019-05-27 13:47:48asvetlovsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-05-23 22:48:14yselivanovsetkeywords: + patch
stage: patch review
pull_requests: + pull_request13444
2019-05-23 22:47:46yselivanovsetnosy: + asvetlov

components: + asyncio
versions: + Python 3.8
2019-05-23 22:46:13yselivanovcreate