[issue37035] Don't log OSError exceptions in asyncio transports

2019-10-12 Thread Harmon
Change by Harmon : -- nosy: +Harmon758 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37035] Don't log OSError exceptions in asyncio transports

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

[issue37035] Don't log OSError exceptions in asyncio transports

2019-05-27 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset a79b6c578fcd2ea8be29440fdd8a998e5527200f by Andrew Svetlov in branch '3.7': [3.7] bpo-37035: Don't log OSError (GH-13548) (#13594) https://github.com/python/cpython/commit/a79b6c578fcd2ea8be29440fdd8a998e5527200f --

[issue37035] Don't log OSError exceptions in asyncio transports

2019-05-27 Thread Andrew Svetlov
Change by Andrew Svetlov : -- pull_requests: +13501 pull_request: https://github.com/python/cpython/pull/13594 ___ Python tracker ___

[issue37035] Don't log OSError exceptions in asyncio transports

2019-05-27 Thread miss-islington
miss-islington added the comment: New changeset 1f39c28e489cca0397fc4c3675d13569318122ac by Miss Islington (bot) (Andrew Svetlov) in branch 'master': bpo-37035: Don't log OSError (GH-13548) https://github.com/python/cpython/commit/1f39c28e489cca0397fc4c3675d13569318122ac -- nosy:

[issue37035] Don't log OSError exceptions in asyncio transports

2019-05-24 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +13460 stage: -> patch review ___ Python tracker ___ ___

[issue37035] Don't log OSError exceptions in asyncio transports

2019-05-24 Thread Andrew Svetlov
Andrew Svetlov added the comment: Update. Currently, exceptions from the ignore list are still logged in debug mode. The proposal doesn't change this behavior. -- ___ Python tracker

[issue37035] Don't log OSError exceptions in asyncio transports

2019-05-24 Thread Andrew Svetlov
New submission from Andrew Svetlov : Currently asyncio uses `loop.call_exception_handler()` for logging *fatal* exceptions from underlying sockets before calling protocol.connection_lost(). There is a list of exceptions that are not logged: BrokenPipeError, ConnectionResetError,