This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Mohammad Dehghan
Recipients Mohammad Dehghan
Date 2019-09-12.08:27:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1568276839.54.0.276254362522.issue38130@roundup.psfhosted.org>
In-reply-to
Content
In section 8.6 of the tutorials page (https://docs.python.org/3/tutorial/errors.html#defining-clean-up-actions), the first item of the bullet points explaining some situations about finally clause, states that

> If an exception occurs during execution of the try clause, the exception may be handled by an except clause. **In all cases, the exception is re-raised after the finally clause has been executed.**

This is wrong, since the exception is not re-raised if an `except` clause handles the exception.
History
Date User Action Args
2019-09-12 08:27:19Mohammad Dehghansetrecipients: + Mohammad Dehghan
2019-09-12 08:27:19Mohammad Dehghansetmessageid: <1568276839.54.0.276254362522.issue38130@roundup.psfhosted.org>
2019-09-12 08:27:19Mohammad Dehghanlinkissue38130 messages
2019-09-12 08:27:19Mohammad Dehghancreate