Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: a6c55232abe40ec876da3faaf8d13a9c4f0caaaf authored by Larry Hastings on 05 January 2014, 12:40:25 UTC
Bump version number for 3.4.0b2.
Tip revision: a6c5523
badsyntax_future5.py
"""This is a test"""
from __future__ import nested_scopes
import foo
from __future__ import nested_scopes


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

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