now that python2.7 is EOL, it might be worth resurrecting this syntax as discussed in https://www.python.org/dev/peps/pep-3100/#id13eg, python 3.11 could support```try:...except (E1, E2, E3) as e:...```as equivalent to```try:...except E1, E2, E3 as e:...```see also https://mail.python.org/archives/list/python-dev@python.org/thread/HSN6ESRB4BD6IUIPKLMNP4TPBQPWHBFK/_______________________________________________Python-ideas mailing list -- python-ideas@python.orgTo unsubscribe send an email to python-ideas-leave@python.orgMessage archived at https://mail.python.org/archives/list/python-ideas@python.org/message/WQOMBT4Z22EIFB53WN54E52AYS3QBKAV/Code of Conduct: http://python.org/psf/codeofconduct/