summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/listcomp4.py
blob: 6b29993097ca10d2fbf383ca629b0b790c4fe812 (plain) (blame)
1
2
3
4
# closing over a local variable in a list comprehension
def f():
    a = 1
    x = [a + b for b in l]