Skip to content

bpo-29587: Add another test for the gen.throw() exception chain fix #19859

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions Lib/test/test_generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,28 @@ def f():
context = cm.exception.__context__
self.assertEqual((type(context), context.args), (KeyError, ('a',)))

def test_exception_context_with_yield_inside_generator(self):
# Check that the context is also available from inside the generator
# with yield, as opposed to outside.
def f():
try:
raise KeyError('a')
except Exception:
try:
yield
except Exception as exc:
self.assertEqual(type(exc), ValueError)
context = exc.__context__
self.assertEqual((type(context), context.args),
(KeyError, ('a',)))
yield 'b'

gen = f()
gen.send(None)
actual = gen.throw(ValueError)
# This ensures that the assertions inside were executed.
self.assertEqual(actual, 'b')

def test_exception_context_with_yield_from(self):
def f():
yield
Expand Down