summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/gen-yield-from-throw.py
blob: 30960fb9c1b1794ca10b0242634cfe2e45218398 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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!")