Your IP : 216.73.216.74


Current Path : /usr/local/python-3.10/lib/python3.10/test/
Upload File :
Current File : //usr/local/python-3.10/lib/python3.10/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)