]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.2/Lib/test/badsyntax_future6.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / badsyntax_future6.py
CommitLineData
4710c53d 1"""This is a test"""\r
2"this isn't a doc string"\r
3from __future__ import nested_scopes\r
4\r
5def f(x):\r
6 def g(y):\r
7 return x + y\r
8 return g\r
9\r
10result = f(2)(4)\r