Lichen

Annotated tests/listcomp_bad.py

580:e703b981b9b1
2017-02-13 Paul Boddie Eliminated redundant struct usage. method-wrapper-for-context
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)