We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d511d1b commit 6bbcba6Copy full SHA for 6bbcba6
1 file changed
Src/StdLib/Lib/test/test_binascii.py
@@ -174,6 +174,7 @@ def test_hqx(self):
174
res = binascii.rledecode_hqx(b)
175
self.assertEqual(res, self.rawdata)
176
177
+ @unittest.skipIf(sys.implementation.name == "ironpython", "TODO: not implemented")
178
def test_rle(self):
179
# test repetition with a repetition longer than the limit of 255
180
data = (b'a' * 100 + b'b' + b'c' * 300)
0 commit comments