Silence some py3k warnings claiming to affect _pyio
[python.git] / Lib / test / badsyntax_future3.py
blobf1c8417edaa297388bf9b243d6556c738a30abc8
1 """This is a test"""
2 from __future__ import nested_scopes
3 from __future__ import rested_snopes
5 def f(x):
6 def g(y):
7 return x + y
8 return g
10 result = f(2)(4)