Lichen

Annotated tests/listcomp_bad.py

866:6538a119a67f
2019-01-24 Paul Boddie Added missing support for the else clause in for loops.
paul@2 1
def f(l, y):
paul@2 2
    return [x for x in l if x > y]
paul@2 3
paul@2 4
result = f([1, 2, 3], 2)