home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2004 March / INTERNET115.ISO / pc / software / windows / building / python / python_233.exe / BADSYNTAX_FUTURE6.PY < prev    next >
Encoding:
Python Source  |  2001-04-18  |  168 b   |  11 lines

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