+1 and -1 at the same time. I feel like :-

"This makes sense",
try:
    # something
except E1, E2, E3:
    # something

"This doesn't make sense",
try:
    # something
except E1, E2, E3 as e:
    # something

The second one according to this idea would be parsed as,
try:
    # something
except (E1, E2, E3) as e:
    # something

Though it would seem this way to people,
try:
    # something
except E1, E2, (E3 as e):
    # something

The first example I gave is much more logical. Because (E1, E2, E3) and E1, E2, 
E3 are the same thing logically.
_______________________________________________
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/J7FUCBFV2TPA7SY3DYNPEBGZ354CYNFR/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to