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