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 serhiy.storchaka
Recipients Priyanshu, paul.moore, serhiy.storchaka, steve.dower, tim.golden, zach.ware
Date 2021-07-27.07:08:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1627369728.31.0.139895889565.issue44746@roundup.psfhosted.org>
In-reply-to
Content
I cannot reproduce.

>>> try:
...     1/0
... except:
...     print('except')
...     raise
... finally:
...     print('finally')
... 
except
finally
Traceback (most recent call last):
  File "<stdin>", line 2, in <module>
ZeroDivisionError: division by zero

Could you please provide an example code?
History
Date User Action Args
2021-07-27 07:08:48serhiy.storchakasetrecipients: + serhiy.storchaka, paul.moore, tim.golden, zach.ware, steve.dower, Priyanshu
2021-07-27 07:08:48serhiy.storchakasetmessageid: <1627369728.31.0.139895889565.issue44746@roundup.psfhosted.org>
2021-07-27 07:08:48serhiy.storchakalinkissue44746 messages
2021-07-27 07:08:48serhiy.storchakacreate