Apparently the code to forestall Tk eating events was too aggressive (Tk user input...
[python/dscho.git] / Lib / test / badsyntax_future4.py
blob805263be8915e19a0d4c4f101847a2453deb98b7
1 """This is a test"""
2 import __future__
3 from __future__ import nested_scopes
5 def f(x):
6 def g(y):
7 return x + y
8 return g
10 print f(2)(4)