If the finally
clause executes a break
, continue
or return
statement, exceptions are not re-raised.
If a finally
clause includes a return
statement, the returned value will be the one from the finally
clause’s return
statement, not the value from the try
clause’s return
statement.