X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=AppPkg%2FApplications%2FPython%2FPython-2.7.2%2FLib%2Ftest%2Fbadsyntax_future5.py;fp=AppPkg%2FApplications%2FPython%2FPython-2.7.2%2FLib%2Ftest%2Fbadsyntax_future5.py;h=0000000000000000000000000000000000000000;hp=a4cd91c934a42972f07849be4d2b32e8488fb2fe;hb=964f432b9b0afe103c41c7613fade3e699118afe;hpb=e2d3a25f1a3135221a9c8061e1b8f90245d727eb diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/badsyntax_future5.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/badsyntax_future5.py deleted file mode 100644 index a4cd91c934..0000000000 --- a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/badsyntax_future5.py +++ /dev/null @@ -1,12 +0,0 @@ -"""This is a test""" -from __future__ import nested_scopes -import foo -from __future__ import nested_scopes - - -def f(x): - def g(y): - return x + y - return g - -result = f(2)(4)