Update version number and release date.
[python/dscho.git] / Lib / test / badsyntax_future7.py
blob370372d4596299d2ebc11a244a8f36b83dcb5754
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 print f(2)(4)