PyXR

c:\python24\lib \ test \ badsyntax_future5.py



0001 """This is a test"""
0002 from __future__ import nested_scopes
0003 import foo
0004 from __future__ import nested_scopes
0005 
0006 
0007 def f(x):
0008     def g(y):
0009         return x + y
0010     return g
0011 
0012 result = f(2)(4)
0013 

Generated by PyXR 0.9.4
SourceForge.net Logo