Require implementations for warnings.showwarning() support the 'line' argument.
[python.git] / Lib / test / badsyntax_future5.py
blob8a7e5fcb70ff2e5e237eb77b37583374daba541e
1 """This is a test"""
2 from __future__ import nested_scopes
3 import foo
4 from __future__ import nested_scopes
7 def f(x):
8 def g(y):
9 return x + y
10 return g
12 result = f(2)(4)