New submission from Serhiy Storchaka:

The proposed patch introduces new private function which chains previously 
fetched and current exceptions. This will help in correct implementing at C 
level an equivalent of following Python idioms:

    try:
        ...
    finally:
        ...

and

    try:
        ...
    except:
        ...
        raise

----------
components: Interpreter Core
messages: 220236
nosy: benjamin.peterson, pitrou, serhiy.storchaka, stutzbach
priority: normal
severity: normal
stage: patch review
status: open
title: Chaining exceptions at C level
type: enhancement
versions: Python 3.4, Python 3.5

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

Reply via email to