Files
TencentOS-tiny/components/language/micropython/tests/basics/gen_yield_from_exc.py
2022-09-29 12:10:37 +08:00

14 lines
213 B
Python

def gen():
yield 1
yield 2
raise ValueError
def gen2():
try:
print((yield from gen()))
except ValueError:
print("caught ValueError from downstream")
g = gen2()
print(list(g))