circuitpython/tests/bytecode/mp-tests/yield2.py

8 lines
105 B
Python
Raw Normal View History

def f():
yield from a
yield from (a, b)
yield from f(a)
2014-04-11 09:10:21 -04:00
lambda:(yield)
lambda:(yield 1) + 2