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