summaryrefslogtreecommitdiff
path: root/modules/language/python/test.py
blob: 104d0b54e615b1564df0ffd714edaf61b1379b44 (about) (plain)
1
2
3
4
5
6
7
8
9
10
def f(x):
    def h(q):
        return q + y + z
    global y
    y=x
    z=1
    return y + x

def g():
    return y,y