summaryrefslogtreecommitdiff
path: root/testsuite/E74.py
blob: 9bb4c5811bc573faa982ca283fd46c60a309f1e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#: E741:1:8
lambda l: dict(zip(l, range(len(l))))
#: E741:1:7 E704:1:1
def f(l): print(l, l, l)
#: E741:2:12
x = (
    lambda l: dict(zip(l, range(len(l)))),
)
#: E741:2:12 E741:3:12
x = (
    lambda l: dict(zip(l, range(len(l)))),
    lambda l: dict(zip(l, range(len(l)))),
)