Summary
Shortlog
Changelog
Graph
Tags
Bookmarks
Branches
Files
Help
Search
Lichen
Annotated tests/listcomp_bad.py
866:6538a119a67f
447:263cac32c8ba
2019-01-24
Paul Boddie
file
changeset
files
shortlog
Added missing support for the else clause in for loops.
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
)