Staging
v0.5.1
Revision f7adf2f473966ef33f6079ceb7115cb6cde3b521 authored by cvs2svn on 08 September 2001, 21:38:26 UTC, committed by cvs2svn on 08 September 2001, 21:38:26 UTC
1 parent f7e5714
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

print f(2)(4)
back to top