diff options
Diffstat (limited to 'tests/basics/gen_yield_from_throw2.py')
| -rw-r--r-- | tests/basics/gen_yield_from_throw2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/gen_yield_from_throw2.py b/tests/basics/gen_yield_from_throw2.py index 0abfdd8cc..5c0fc7dbc 100644 --- a/tests/basics/gen_yield_from_throw2.py +++ b/tests/basics/gen_yield_from_throw2.py @@ -6,7 +6,7 @@ def gen(): except GeneratorExit: print('GeneratorExit') yield 456 - + # thrown a class g = gen() print(next(g)) |
