We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b830dc commit 253fcfbCopy full SHA for 253fcfb
Lib/test/test_importlib/source/test_source_encoding.py
@@ -76,14 +76,10 @@ def test_encoding_on_second_line(self):
76
source = b"#/usr/bin/python\n" + self.create_source('Latin-1')
77
self.run_test(source)
78
79
- # TODO: RUSTPYTHON
80
- @unittest.expectedFailure
81
# [BOM]
82
def test_bom(self):
83
self.run_test(codecs.BOM_UTF8 + self.source_line.encode('utf-8'))
84
85
86
87
# [BOM and utf-8]
88
def test_bom_and_utf_8(self):
89
source = codecs.BOM_UTF8 + self.create_source('utf-8')
0 commit comments