micropython/tests/basics/gen_yield_from_exc.py

14 lines
213 B
Python
Raw Permalink Normal View History

2014-03-26 11:27:52 -06:00
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))