blob: 829bf0f3b482ba42859c42c778042b9d2f0aca66 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
def gen():
try:
yield 1
except ValueError:
print("got ValueError from upstream!")
yield "str1"
raise TypeError
def gen2():
print((yield from gen()))
g = gen2()
print(next(g))
print(g.throw(ValueError))
try:
print(next(g))
except TypeError:
print("got TypeError from downstream!")
# case where generator doesn't intercept the thrown/injected exception
def gen3():
yield 123
yield 456
g3 = gen3()
print(next(g3))
try:
g3.throw(StopIteration)
except StopIteration:
print('got StopIteration from downstream!')
|