]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.2/Lib/test/badsyntax_future3.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / badsyntax_future3.py
CommitLineData
4710c53d 1"""This is a test"""\r
2from __future__ import nested_scopes\r
3from __future__ import rested_snopes\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