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