1# test closure with lots of closed over variables
2
3def f():
4    a, b, c, d, e, f, g, h = [i for i in range(8)]
5    def x():
6        print(a, b, c, d, e, f, g, h)
7    x()
8
9f()
10