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: Implement async write and async close in asyncio StreamWriter
Type: Stage: resolved
Components: asyncio Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, yselivanov
Priority: normal Keywords: patch

Created on 2018-09-13 18:46 by asvetlov, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 9274 merged asvetlov, 2018-09-13 18:47
Messages (2)
msg325279 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2018-09-13 18:46
Methods are needed for providing consistent stream API with control flow switched on by default.
msg325310 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2018-09-13 23:53
New changeset 11194c877c902a6c3b769d85be887c2272e0a541 by Andrew Svetlov in branch 'master':
bpo-34666: Implement stream.awrite() and stream.aclose() (GH-9274)
https://github.com/python/cpython/commit/11194c877c902a6c3b769d85be887c2272e0a541
History
Date User Action Args
2022-04-11 14:59:05adminsetgithub: 78847
2018-09-14 00:04:21asvetlovsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-09-13 23:53:54asvetlovsetmessages: + msg325310
2018-09-13 18:47:52asvetlovsetkeywords: + patch
stage: patch review
pull_requests: + pull_request8706
2018-09-13 18:46:09asvetlovcreate