| Current Path : /proc/self/root/usr/local/python-3.5/lib/python3.5/test/ |
| Current File : //proc/self/root/usr/local/python-3.5/lib/python3.5/test/badsyntax_future4.py |
"""This is a test"""
import __future__
from __future__ import nested_scopes
def f(x):
def g(y):
return x + y
return g
result = f(2)(4)