/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

  1. """This is a test"""
  2. from __future__ import nested_scopes; import string; from __future__ import \
  3. nested_scopes
  4. def f(x):
  5. def g(y):
  6. return x + y
  7. return g
  8. result = f(2)(4)