Staging
v0.8.1
Revision e09359112e250268eca209355abeb17abf822486 authored by Ned Deily on 08 July 2019, 18:03:50 UTC, committed by Ned Deily on 08 July 2019, 18:03:50 UTC
1 parent f2cbf41
Raw File
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)
back to top