New submission from Mohammad Dehghan <md.unic...@gmail.com>:

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.

----------
nosy:  -docs@python

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue38130>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to