[issue32391] Add StreamWriter.wait_closed()

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

[issue32391] Add StreamWriter.wait_closed()

2018-01-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset fe133aad5949db7309c26c58b066c22e714e by Andrew Svetlov in branch 'master': bpo-32391: Implement StreamWriter.wait_closed() (#5281) https://github.com/python/cpython/commit/fe133aad5949db7309c26c58b066c22e714e -- ___

[issue32391] Add StreamWriter.wait_closed()

2018-01-23 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +5127 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue32391] Add StreamWriter.wait_closed()

2018-01-21 Thread Nathaniel Smith
Change by Nathaniel Smith : -- nosy: +njs ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue32391] Add StreamWriter.wait_closed()

2017-12-22 Thread Nitish
Change by Nitish : -- nosy: +nitishch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/

[issue32391] Add StreamWriter.wait_closed()

2017-12-20 Thread Yury Selivanov
Yury Selivanov added the comment: We've discussed this before, please go ahead. -- type: -> enhancement ___ Python tracker ___ ___

[issue32391] Add StreamWriter.wait_closed()

2017-12-20 Thread Andrew Svetlov
New submission from Andrew Svetlov : Without the method there is no possibility to wait for actual writer closing (it's performed at least on next loop iteration, and even later for SSL transports). Without waiting for actual closing writing tests is a pain: user should either add asyncio.sle