summaryrefslogtreecommitdiff
path: root/tests/bytecode/mp-tests/listcomp3.py
blob: 77a8f2be20a531ff15b87f8ae1876c50cfdff134 (plain)
1
2
3
x = (a + 1 for a in l if a.f())

x = [a + 1 for a in l if a.f()]