Lichen

tests/listcomp.py

210:263f32338b37
2016-11-22 Paul Boddie Prevent lambdas with defaults being referenced as static function objects.
     1 def f(l, y):     2     return [x for x in l if x > y]     3      4 result = f([1, 2, 3], 2)