blob: 8a7e5fcb70ff2e5e237eb77b37583374daba541e [file] [log] [blame]
Jeremy Hylton62e2c7e2001-02-28 17:48:06 +00001"""This is a test"""
2from __future__ import nested_scopes
3import foo
4from __future__ import nested_scopes
5
6
7def f(x):
8 def g(y):
9 return x + y
10 return g
11
Neal Norwitz328f3382003-12-13 22:43:34 +000012result = f(2)(4)