[issue34506] Traceback logged when SSL handshake fails

2019-06-17 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Don't log OSError exceptions in asyncio transports ___ Python tracker

[issue34506] Traceback logged when SSL handshake fails

2019-06-17 Thread Aymeric Augustin
Aymeric Augustin added the comment: Yes, that seems reasonable. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34506] Traceback logged when SSL handshake fails

2019-06-17 Thread Andrew Svetlov
Andrew Svetlov added the comment: I believe the issue is a duplicate for #37035 at least regarding traceback logging. It can be closed, OSError exceptions are not logged anymore. -- ___ Python tracker

[issue34506] Traceback logged when SSL handshake fails

2019-06-16 Thread Ned Deily
Change by Ned Deily : -- components: +asyncio nosy: +asvetlov, yselivanov ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34506] Traceback logged when SSL handshake fails

2019-06-16 Thread Aymeric Augustin
Aymeric Augustin added the comment: The same issue was reported in the bug tracker for websockets: https://github.com/aaugustin/websockets/issues/614 -- nosy: +aymeric.augustin ___ Python tracker

[issue34506] Traceback logged when SSL handshake fails

2019-03-22 Thread lilydjwg
Change by lilydjwg : -- nosy: +lilydjwg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34506] Traceback logged when SSL handshake fails

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

[issue34506] Traceback logged when SSL handshake fails

2019-02-14 Thread cdods
cdods added the comment: Any update on this one? Still happening on 3.7.1 -- assignee: -> christian.heimes components: +SSL nosy: +cdods, christian.heimes type: -> behavior versions: +Python 3.7 ___ Python tracker

[issue34506] Traceback logged when SSL handshake fails

2018-08-26 Thread Hrvoje Nikšić
New submission from Hrvoje Nikšić : When an SSL handshake fails in asyncio, an exception traceback is logged to standard error even if the application code catches the exception. This logging cannot be suppressed, except by providing a custom exception handler for the whole event loop. The