Summary
Shortlog
Changelog
Graph
Tags
Bookmarks
Branches
Files
Help
Search
Lichen
tests/listcomp.py
83:caa13d1fb177
2:3dff1f10598f
2016-10-07
Paul Boddie
raw
annotate
files
changeset
graph
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
)