Staging
v0.5.1
https://github.com/python/cpython
Revision d0c2a20b24a1317343620c0f4e318733745b97df authored by Larry Hastings on 25 May 2015, 23:49:01 UTC, committed by Larry Hastings on 25 May 2015, 23:49:01 UTC
1 parent 6a0ee2b
Raw File
Tip revision: d0c2a20b24a1317343620c0f4e318733745b97df authored by Larry Hastings on 25 May 2015, 23:49:01 UTC
Version bump for trunk to 3.6.0a0. Welcome to the future!
Tip revision: d0c2a20
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