Staging
v0.5.1
https://github.com/python/cpython
Revision 48e602a2da9a20ec1d6d7fdcd45439187fe11344 authored by Raymond Hettinger on 04 December 2003, 21:42:31 UTC, committed by Raymond Hettinger on 04 December 2003, 21:42:31 UTC
1 parent 5115a30
Raw File
Tip revision: 48e602a2da9a20ec1d6d7fdcd45439187fe11344 authored by Raymond Hettinger on 04 December 2003, 21:42:31 UTC
Add newsitem for a bugfix backport.
Tip revision: 48e602a
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

print f(2)(4)
back to top