[issue34666] Implement async write and async close in asyncio StreamWriter

2018-09-13 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue34666] Implement async write and async close in asyncio StreamWriter

2018-09-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: 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 -- ___

[issue34666] Implement async write and async close in asyncio StreamWriter

2018-09-13 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +8706 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue34666] Implement async write and async close in asyncio StreamWriter

2018-09-13 Thread Andrew Svetlov
New submission from Andrew Svetlov : Methods are needed for providing consistent stream API with control flow switched on by default. -- components: asyncio messages: 325279 nosy: asvetlov, yselivanov priority: normal severity: normal status: open title: Implement async write and async