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

# Import the name nested_scopes twice to trigger SF bug #407394 (regression).
from __future__ import nested_scopes, nested_scopes

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

print f(2)(4)
back to top