(self)
| 1112 | ) |
| 1113 | |
| 1114 | def test_bug1601501(self): |
| 1115 | # SF bug #1601501: check that the codec works with a buffer |
| 1116 | self.assertEqual(str(b"\xef\xbb\xbf", "utf-8-sig"), "") |
| 1117 | |
| 1118 | def test_bom(self): |
| 1119 | d = codecs.getincrementaldecoder("utf-8-sig")() |
nothing calls this directly
no test coverage detected