home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 33
/
Freelog033.iso
/
Progr
/
Python-2.2.1.exe
/
BADSYNTAX_FUTURE4.PY
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Python Source
|
2001-04-18
|
160 b
|
11 lines
"""This is a test"""
import __future__
from __future__ import nested_scopes
def f(x):
def g(y):
return x + y
return g
print f(2)(4)