mirror of https://github.com/python/cpython.git
Issue #20574: Add more tests for cp65001
This commit is contained in:
parent
7d00cc1a64
commit
f8cbf78bbd
|
@ -2879,5 +2879,11 @@ def test_incremental(self):
|
|||
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()
|
||||
|
|
Loading…
Reference in New Issue