make file closing more robust
[python/dscho.git] / Lib / test / badsyntax_future8.py
blobca45289e2e5a4fd5c0a23bc3b4f9da23c95bff86
1 """This is a test"""
3 from __future__ import *
5 def f(x):
6 def g(y):
7 return x + y
8 return g
10 print(f(2)(4))