Lichen

tests/listcomp.py

271:85569702637b
2016-11-28 Paul Boddie Added module name and filename information to module instances.
     1 def f(l, y):     2     return [x for x in l if x > y]     3      4 result = f([1, 2, 3], 2)