Lichen

Annotated tests/listcomp_bad.py

824:d329acb71a6a
2018-06-22 Paul Boddie Obtain the distinct set of accessor kinds. Fixing this breaks invocations of identified static methods where the instance accessor should be tested but is not, such as in the keyword_args test.
paul@2 1
def f(l, y):
paul@2 2
    return [x for x in l if x > y]
paul@2 3
paul@2 4
result = f([1, 2, 3], 2)