]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_future3.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / test_future3.py
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_future3.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_future3.py
deleted file mode 100644 (file)
index 1baf975..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-from __future__ import nested_scopes\r
-from __future__ import division\r
-\r
-import unittest\r
-from test import test_support\r
-\r
-x = 2\r
-def nester():\r
-    x = 3\r
-    def inner():\r
-        return x\r
-    return inner()\r
-\r
-\r
-class TestFuture(unittest.TestCase):\r
-\r
-    def test_floor_div_operator(self):\r
-        self.assertEqual(7 // 2, 3)\r
-\r
-    def test_true_div_as_default(self):\r
-        self.assertAlmostEqual(7 / 2, 3.5)\r
-\r
-    def test_nested_scopes(self):\r
-        self.assertEqual(nester(), 3)\r
-\r
-def test_main():\r
-    test_support.run_unittest(TestFuture)\r
-\r
-if __name__ == "__main__":\r
-    test_main()\r