commit | 8b33961e4bc4020d8b2d5b949ad9d5c669300e89 | [log] [tgz] |
---|---|---|
author | Chris Jerdonek <chris.jerdonek@gmail.com> | Thu Jul 09 06:27:23 2020 -0700 |
committer | GitHub <noreply@github.com> | Thu Jul 09 14:27:23 2020 +0100 |
tree | abed35abb8d1696af9e068b6eeb44193ac4ed00f | |
parent | 96a6a6d42be272a27562d98549bbffc0d1854669 [diff] |
bpo-29590: fix stack trace for gen.throw() with yield from (#19896) * Add failing test. * bpo-29590: fix stack trace for gen.throw() with yield from (GH-NNNN) When gen.throw() is called on a generator after a "yield from", the intermediate stack trace entries are lost. This commit fixes that.