diff options
author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2020-05-02 01:14:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-02 01:14:19 (GMT) |
commit | 02047265eb83a43ba18cc7fee81756f1a1a1f968 (patch) | |
tree | 41f74764a8cfa3f824fcfea57a1b3ef17f7b4fd3 /Lib | |
parent | f40bd466bf14029e2687e36e965875adf9d4be1a (diff) | |
download | cpython-02047265eb83a43ba18cc7fee81756f1a1a1f968.zip cpython-02047265eb83a43ba18cc7fee81756f1a1a1f968.tar.gz cpython-02047265eb83a43ba18cc7fee81756f1a1a1f968.tar.bz2 |
bpo-29587: Update gen.throw() to chain exceptions (#19823)
Before this commit, if an exception was active inside a generator
when calling gen.throw(), that exception was lost (i.e. there was
no implicit exception chaining). This commit fixes that by
setting exc.__context__ when calling gen.throw(exc).
Diffstat (limited to 'Lib')
-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 3e42bc6..4d96f44 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(): |