Re: Except with empty tuple

2019-10-16 Thread Terry Reedy
On 10/16/2019 1:18 PM, MRAB wrote: On 2019-10-16 15:03, Antoon Pardon wrote: I would like to verify I understand correctly. It is about the following construct: try: statement1 statement2 ... except (): pass As far as I understand and my tests see

Re: Except with empty tuple

2019-10-16 Thread MRAB
On 2019-10-16 15:03, Antoon Pardon wrote: I would like to verify I understand correctly. It is about the following construct: try: statement1 statement2 ... except (): pass As far as I understand and my tests seem to confirm this, this is equivalle

Except with empty tuple

2019-10-16 Thread Antoon Pardon
I would like to verify I understand correctly. It is about the following construct: try: statement1 statement2 ... except (): pass As far as I understand and my tests seem to confirm this, this is equivallent to just statement1 statement2 ...