[issue34634] New asyncio streams API

2019-09-11 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed superseder: -> Merge StreamWriter and StreamReader into just asyncio.Stream ___ Python tracker

[issue34634] New asyncio streams API

2019-09-11 Thread Andrew Svetlov
Andrew Svetlov added the comment: Yes, please do -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34634] New asyncio streams API

2019-09-11 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Streams API is implemented as part of issue36889 in 3.8. I think we can close this as a duplicate. Thanks. -- nosy: +xtreak ___ Python tracker

[issue34634] New asyncio streams API

2018-09-11 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +8621 stage: -> patch review ___ Python tracker ___ ___

[issue34634] New asyncio streams API

2018-09-11 Thread Andrew Svetlov
New submission from Andrew Svetlov : Currently, we have separate classes: reader and writer. It is very inconvenient: these classes are tightly coupled internally, there is no sense to have two objects to the single logical entity. The second problem is `writer.write()` synchronous API. To