circuitpython/tests/basics/gen-yield-from-exc.py

14 lines
213 B
Python
Raw Normal View History

2014-03-26 13:27:52 -04: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))