commit | 2514a632fb7d37be24c2059d0e286d35600f9795 | [log] [tgz] |
---|---|---|
author | Chris Jerdonek <chris.jerdonek@gmail.com> | Thu Apr 30 12:18:05 2020 -0700 |
committer | GitHub <noreply@github.com> | Thu Apr 30 12:18:05 2020 -0700 |
tree | bdf3c5f468206dae232a23b55503cf9cbced5616 | |
parent | c001c09e9059ba04bc088349cd87a1374dc0754f [diff] |
bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19811) Before this commit, if an exception was active inside a generator when calling gen.throw(), then that exception was lost (i.e. there was no implicit exception chaining). This commit fixes that.