/Lib/test/badsyntax_future6.py

http://unladen-swallow.googlecode.com/ · Python · 10 lines · 7 code · 2 blank · 1 comment · 0 complexity · 2bcae5ac048092e4519ac43c6be65759 MD5 · raw file

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