]> git.proxmox.com Git - mirror_edk2.git/blob - AppPkg/Applications/Python/Python-2.7.2/Lib/test/badsyntax_future6.py
f01d7886798a335262cae1c88f7682330bf90742
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / badsyntax_future6.py
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 result = f(2)(4)