Files for 2.1b1 distribution.
[python/dscho.git] / Lib / test / test_future1.py
blob05896618711d376e469c582c0c1405b83a0e841c
1 """This is a test"""
2 from __future__ import nested_scopes
4 def f(x):
5 def g(y):
6 return x + y
7 return g
9 print f(2)(4)