Lichen

tests/listcomp.py

263:d81ea7b97af1
2016-11-28 Paul Boddie Ensure that constant accessors really are static in attribute plans.
     1 def f(l, y):     2     return [x for x in l if x > y]     3      4 result = f([1, 2, 3], 2)