]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_softspace.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / test_softspace.py
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_softspace.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_softspace.py
deleted file mode 100644 (file)
index 6285b36..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-from test.test_support import run_unittest\r
-import unittest\r
-import StringIO\r
-\r
-class SoftspaceTests(unittest.TestCase):\r
-    def test_bug_480215(self):\r
-        # SF bug 480215:  softspace confused in nested print\r
-        f = StringIO.StringIO()\r
-        class C:\r
-            def __str__(self):\r
-                print >> f, 'a'\r
-                return 'b'\r
-\r
-        print >> f, C(), 'c ', 'd\t', 'e'\r
-        print >> f, 'f', 'g'\r
-        # In 2.2 & earlier, this printed ' a\nbc  d\te\nf g\n'\r
-        self.assertEqual(f.getvalue(), 'a\nb c  d\te\nf g\n')\r
-\r
-def test_main():\r
-    run_unittest(SoftspaceTests)\r
-\r
-if __name__ == '__main__':\r
-    test_main()\r