diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2014-03-18 01:40:22 +0100 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2014-03-18 01:40:22 +0100 |
| commit | 07beb375b7bdaef0d6b99a0bd891e9276ea6515b (patch) | |
| tree | b17da64f9cc08499b6cbc8131b1e70709e51e4cb | |
| parent | 7143029d4360637aadbd7ddf386ea5c64fb83095 (diff) | |
| download | cpython-git-07beb375b7bdaef0d6b99a0bd891e9276ea6515b.tar.gz | |
Issue #20574: Remove duplicated test failing on Windows XP
| -rw-r--r-- | Lib/test/test_codecs.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py index 34a064c725..6945a99576 100644 --- a/Lib/test/test_codecs.py +++ b/Lib/test/test_codecs.py @@ -2879,11 +2879,5 @@ class CodePageTest(unittest.TestCase): self.assertEqual(decoded, ('abc', 3)) -@unittest.skipUnless(sys.platform == 'win32', - 'cp65001 is specific to Windows') -class CP65001Test(UTF8Test, unittest.TestCase): - encoding = "cp65001" - - if __name__ == "__main__": unittest.main() |
