]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_codecmaps_tw.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / test_codecmaps_tw.py
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_codecmaps_tw.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_codecmaps_tw.py
deleted file mode 100644 (file)
index a986bfe..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env python\r
-#\r
-# test_codecmaps_tw.py\r
-#   Codec mapping tests for ROC encodings\r
-#\r
-\r
-from test import test_support\r
-from test import test_multibytecodec_support\r
-import unittest\r
-\r
-class TestBIG5Map(test_multibytecodec_support.TestBase_Mapping,\r
-                  unittest.TestCase):\r
-    encoding = 'big5'\r
-    mapfileurl = 'http://www.unicode.org/Public/MAPPINGS/OBSOLETE/' \\r
-                 'EASTASIA/OTHER/BIG5.TXT'\r
-\r
-class TestCP950Map(test_multibytecodec_support.TestBase_Mapping,\r
-                   unittest.TestCase):\r
-    encoding = 'cp950'\r
-    mapfileurl = 'http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/' \\r
-                 'WINDOWS/CP950.TXT'\r
-    pass_enctest = [\r
-        ('\xa2\xcc', u'\u5341'),\r
-        ('\xa2\xce', u'\u5345'),\r
-    ]\r
-\r
-def test_main():\r
-    test_support.run_unittest(__name__)\r
-\r
-if __name__ == "__main__":\r
-    test_main()\r