diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-06-04 15:09:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-04 15:09:10 (GMT) |
commit | ca612a9728b83472d9d286bbea74972d426ed344 (patch) | |
tree | a2f8cab6da806d58507ee9508548618f34e92940 /Lib | |
parent | ea9f168957f7236aae2185f65e0dc608a9a7a37b (diff) | |
download | cpython-ca612a9728b83472d9d286bbea74972d426ed344.zip cpython-ca612a9728b83472d9d286bbea74972d426ed344.tar.gz cpython-ca612a9728b83472d9d286bbea74972d426ed344.tar.bz2 |
bpo-36778: Remove outdated comment from CodePageTest (GH-13807)
CP65001Test has been removed.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_codecs.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py index 47df88c..d98f178 100644 --- a/Lib/test/test_codecs.py +++ b/Lib/test/test_codecs.py @@ -2870,7 +2870,6 @@ class ExceptionChainingTest(unittest.TestCase): @unittest.skipUnless(sys.platform == 'win32', 'code pages are specific to Windows') class CodePageTest(unittest.TestCase): - # CP_UTF8 is already tested by CP65001Test CP_UTF8 = 65001 def test_invalid_code_page(self): |