summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/closure_namedarg.py
blob: 5c0c451d15066206ecf8ae70f43c3f6edf252f1e (plain) (blame)
1
2
3
4
5
6
7
8
9
# test passing named arg to closed-over function

def f():
    x = 1
    def g(z):
        print(x, z)
    return g

f()(z=42)