Files
Pyarmor-Static-Unpack-1shot/tests/input/lambdas_assignment.py
Michael Hansen 391ba6502d Migrate additional tests which previously didn't have reference source to
the new test system, including new reference source.
2019-10-07 17:06:08 -07:00

10 lines
213 B
Python

def test_logger(arg, var):
print arg
print var
asdf = {}
asdf['a'] = lambda x: test_logger(1, x)
asdf['b'] = lambda y: test_logger(2, y)
mult3 = filter(lambda x: x % 3 == 0, [1, 2, 3, 4, 5, 6, 7, 8, 9])