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 pradyunsg
Recipients Marcus.Smith, dstufft, ncoghlan, paul.moore, pradyunsg
Date 2019-11-01.17:38:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1572629906.25.0.808619272253.issue38662@roundup.psfhosted.org>
In-reply-to
Content
Note that the patch uses the fact that:


```
def foo():
    try:
        raise Exception("returned")
    except Exception as e:
        print("except")
        return e.args[0]
    finally:
        print("finally")


print(foo())
```

will print:

```
except
finally
returned
```
History
Date User Action Args
2019-11-01 17:38:26pradyunsgsetrecipients: + pradyunsg, paul.moore, ncoghlan, dstufft, Marcus.Smith
2019-11-01 17:38:26pradyunsgsetmessageid: <1572629906.25.0.808619272253.issue38662@roundup.psfhosted.org>
2019-11-01 17:38:26pradyunsglinkissue38662 messages
2019-11-01 17:38:26pradyunsgcreate