Sign in
android
/
platform
/
external
/
python
/
pylint
/
612950b6eae36a543f4645d743f5fd02839c9788
/
.
/
tests
/
functional
/
y
/
yield_from_iterable.py
blob: 7803936d5334854af0c64870adcd7f48c61b8602 [
file
] [
log
] [
blame
]
"""
Check that `yield from`-statement takes an iterable.
"""
# pylint: disable=missing-docstring
def
to_ten
():
yield
from
10
# [not-an-iterable]