Lichen

tests/listcomp.py

311:3ea74639e01f
2016-12-03 Paul Boddie Exposed maxint and minint via the int module. Configured string hashing to use maxint instead of a specific constant.
     1 def f(l, y):     2     return [x for x in l if x > y]     3      4 result = f([1, 2, 3], 2)