summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/closure2.py
blob: 08b4205810d467f8c46d5efdd0855a379ae1802c (plain) (blame)
1
2
3
4
5
6
7
# test closing over an argument

def f(x):
    y = 2 * x
    def g(z):
        return x + y + z
    return g