Exceptions raised during renaming in rotating file handlers are now passed to handleE...
[python.git] / Lib / test / test_future2.py
blob79eb73179de1ecc43d4cd4e365ce586d7668d1f1
1 """This is a test"""
3 from __future__ import nested_scopes; import string
5 def f(x):
6 def g(y):
7 return x + y
8 return g
10 result = f(2)(4)