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
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
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
...