summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/yield2.py
blob: acc0ec8e998edd4bf611160375525e2a87d51684 (plain) (blame)
1
2
3
4
5
6
7
def f():
    yield from a
    yield from (a, b)
    yield from f(a)

lambda:(yield)
lambda:(yield 1) + 2