home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2004 December
/
PCpro_2004_12.ISO
/
files
/
webserver
/
tsw
/
TSW_3.4.0.exe
/
Apache2
/
python
/
badsyntax_future6.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-17
|
168 b
|
11 lines
"""This is a test"""
"this isn't a doc string"
from __future__ import nested_scopes
def f(x):
def g(y):
return x + y
return g
print f(2)(4)