Linaro Git Browser
Code Review
Sign In
review.linaro.org
/
lite
/
micropython
/
539681fffd96082ca3b5d18643d4f08f65c47170
/
.
/
tests
/
basics
/
gen_yield_from_exc.py
blob: 01c954f5b7298da277a22c63082269ee08cb2de2 [
file
] [
log
] [
blame
]
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
))