summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/scope3.py
blob: a5fc8d09fe6d240b8dca742ed18b98c86cc07e23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# test nested functions and scope

def f(x):
    def f2(y):
        return y + x
    print(f2(x))
    return f2
x=f(2)
print(x, x(5))
f=123
print(f(f))