Staging
v0.5.1
https://github.com/python/cpython
Revision 1f5df13b1cedb23f989fec71331153fb1ab98a31 authored by Jeremy Hylton on 05 May 2003, 03:18:41 UTC, committed by Jeremy Hylton on 05 May 2003, 03:18:41 UTC
1 parent 7aed4a3
Raw File
Tip revision: 1f5df13b1cedb23f989fec71331153fb1ab98a31 authored by Jeremy Hylton on 05 May 2003, 03:18:41 UTC
Backport fix for SF #723831: urlopen() raises URLError.
Tip revision: 1f5df13
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