Staging
v0.8.1
Revision 179f960d47dc9f2c18e5b535db63fb70b21fc3ea authored by Serhiy Storchaka on 12 June 2016, 08:44:06 UTC, committed by Serhiy Storchaka on 12 June 2016, 08:44:06 UTC
1 parent cbe6142
Raw File
badsyntax_future3.py
"""This is a test"""
from __future__ import nested_scopes
from __future__ import rested_snopes

def f(x):
    def g(y):
        return x + y
    return g

result = f(2)(4)
back to top