Lichen

tests/listcomp.py

83:caa13d1fb177
2016-10-07 Paul Boddie Created a separate method for identifying unbound method providers.
     1 def f(l, y):     2     return [x for x in l if x > y]     3      4 result = f([1, 2, 3], 2)