We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ae6408 commit 0fcafb8Copy full SHA for 0fcafb8
1 file changed
Lib/test/test_source_encoding.py
@@ -14,11 +14,11 @@ class MiscSourceEncodingTest(unittest.TestCase):
14
15
def test_pep263(self):
16
self.assertEqual(
17
- "ðÉÔÏÎ".encode("utf-8"),
+ "ðÉÔÏÎ".encode("utf-8"),
18
b'\xd0\x9f\xd0\xb8\xd1\x82\xd0\xbe\xd0\xbd'
19
)
20
21
- "\ð".encode("utf-8"),
+ "\ð".encode("utf-8"),
22
b'\\\xd0\x9f'
23
24
@@ -235,7 +235,7 @@ def test_bpo39337(self):
235
"""
236
import encodings
237
238
- out = encodings.normalize_encoding("¿¿¿-8")
+ out = encodings.normalize_encoding("кои-8")
239
self.assertEqual(out, '8')
240
241
0 commit comments