Serhiy Storchaka <storchaka+cpyt...@gmail.com> added the comment:

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?

----------
nosy: +serhiy.storchaka

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

Reply via email to