[issue36916] Swallow unhandled exception report introduced by 36802

2019-05-15 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue36916] Swallow unhandled exception report introduced by 36802

2019-05-14 Thread STINNER Victor
STINNER Victor added the comment: New changeset f12ba7cd0a7370631214ac0b337ab5455ce717b2 by Victor Stinner (Andrew Svetlov) in branch 'master': bpo-36916: asyncio: Swallow unhandled write() exception (GH-13313) https://github.com/python/cpython/commit/f12ba7cd0a7370631214ac0b337ab5455ce717b2

[issue36916] Swallow unhandled exception report introduced by 36802

2019-05-14 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +13223 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue36916] Swallow unhandled exception report introduced by 36802

2019-05-14 Thread Andrew Svetlov
Change by Andrew Svetlov : -- components: +Library (Lib), asyncio nosy: +yselivanov type: -> behavior versions: +Python 3.8 ___ Python tracker ___

[issue36916] Swallow unhandled exception report introduced by 36802

2019-05-14 Thread Andrew Svetlov
New submission from Andrew Svetlov : In #36802 when old-style writer.write() is used without awaiting and an exception is raised from writer.drain() method asyncio reports about the unhandled exception. The proposed fix adds a done callback to task for swallowing the exception in such case.