Files for 2.1b1 distribution.
[python/dscho.git] / Lib / test / test_future5.py
blob118620873b28c6915a49416c640223ed5fa74d3e
1 """This is a test"""
2 from __future__ import nested_scopes
3 import foo
4 from __future__ import nested_scopes
7 def f(x):
8 def g(y):
9 return x + y
10 return g
12 print f(2)(4)