]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_pep263.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / test_pep263.py
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_pep263.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_pep263.py
deleted file mode 100644 (file)
index 668605f..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-# -*- coding: koi8-r -*-\r
-\r
-import unittest\r
-from test import test_support\r
-\r
-class PEP263Test(unittest.TestCase):\r
-\r
-    def test_pep263(self):\r
-        self.assertEqual(\r
-            u"ðÉÔÏÎ".encode("utf-8"),\r
-            '\xd0\x9f\xd0\xb8\xd1\x82\xd0\xbe\xd0\xbd'\r
-        )\r
-        self.assertEqual(\r
-            u"\ð".encode("utf-8"),\r
-            '\\\xd0\x9f'\r
-        )\r
-\r
-    def test_compilestring(self):\r
-        # see #1882\r
-        c = compile("\n# coding: utf-8\nu = u'\xc3\xb3'\n", "dummy", "exec")\r
-        d = {}\r
-        exec c in d\r
-        self.assertEqual(d['u'], u'\xf3')\r
-\r
-\r
-    def test_issue3297(self):\r
-        c = compile("a, b = '\U0001010F', '\\U0001010F'", "dummy", "exec")\r
-        d = {}\r
-        exec(c, d)\r
-        self.assertEqual(d['a'], d['b'])\r
-        self.assertEqual(len(d['a']), len(d['b']))\r
-\r
-    def test_issue7820(self):\r
-        # Ensure that check_bom() restores all bytes in the right order if\r
-        # check_bom() fails in pydebug mode: a buffer starts with the first\r
-        # byte of a valid BOM, but next bytes are different\r
-\r
-        # one byte in common with the UTF-16-LE BOM\r
-        self.assertRaises(SyntaxError, eval, '\xff\x20')\r
-\r
-        # two bytes in common with the UTF-8 BOM\r
-        self.assertRaises(SyntaxError, eval, '\xef\xbb\x20')\r
-\r
-def test_main():\r
-    test_support.run_unittest(PEP263Test)\r
-\r
-if __name__=="__main__":\r
-    test_main()\r