summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/scope5.py
blob: a14de350ed096528d52a7eb2272a4fce1291fb0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# test scope

def f(x):
    def f2(y):
        print(y, x42, y42)
    x42 = x = y42 = 123
    myf2 = f2
    x42 = 456
    return myf2

myf = f(1)
myf(1)