Serhiy Storchaka <storchaka+cpyt...@gmail.com> added the comment:

Expression `A or B` gets you A if A is true.

If you want to catch several types of exception by one "except", use except 
with a tuple:

    except (ConnectionResetError, ConnectionAbortedError):

----------
nosy: +serhiy.storchaka
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue45153>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to