diff options
author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2020-04-30 12:18:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 12:18:05 -0700 |
commit | 2514a632fb7d37be24c2059d0e286d35600f9795 (patch) | |
tree | bdf3c5f468206dae232a23b55503cf9cbced5616 /Lib/test | |
parent | c001c09e9059ba04bc088349cd87a1374dc0754f (diff) | |
download | cpython-git-2514a632fb7d37be24c2059d0e286d35600f9795.tar.gz |
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.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_generators.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Lib/test/test_generators.py b/Lib/test/test_generators.py index 3e42bc6b69..4d96f44b15 100644 --- a/Lib/test/test_generators.py +++ b/Lib/test/test_generators.py @@ -316,6 +316,23 @@ class ExceptionTest(unittest.TestCase): self.assertEqual(cm.exception.value.value, 2) +class GeneratorThrowTest(unittest.TestCase): + + def test_exception_context_set(self): + def f(): + try: + raise KeyError('a') + except Exception: + yield + + gen = f() + gen.send(None) + with self.assertRaises(ValueError) as cm: + gen.throw(ValueError) + context = cm.exception.__context__ + self.assertEqual((type(context), context.args), (KeyError, ('a',))) + + class YieldFromTests(unittest.TestCase): def test_generator_gi_yieldfrom(self): def a(): |