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_future7.py
"""This is a test"""

from __future__ import nested_scopes; import string; from __future__ import \
     nested_scopes

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

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