/Lib/test/badsyntax_future7.py
http://unladen-swallow.googlecode.com/ · Python · 11 lines · 7 code · 3 blank · 1 comment · 0 complexity · 7c2b7e3080552e89baa970509e450867 MD5 · raw file
- """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
- result = f(2)(4)