From 8beba0f4efbcb67cce7673da37aefbf6f70a8cfd Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Wed, 3 Feb 2021 21:24:44 -0500 Subject: [PATCH] Explain test_incorporates_rn "skip" --- Lib/test/test_importlib/test_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_importlib/test_util.py b/Lib/test/test_importlib/test_util.py index 8bc5403cb..7f1fbe4ef 100644 --- a/Lib/test/test_importlib/test_util.py +++ b/Lib/test/test_importlib/test_util.py @@ -546,7 +546,7 @@ class MagicNumberTests: # Should be 4 bytes. self.assertEqual(len(self.util.MAGIC_NUMBER), 4) - @unittest.skip("TODO: RUSTPYTHON") + @unittest.skip("TODO: RUSTPYTHON, Source_MagicNumberTests passes while Frozen_MagicNumberTests fails") def test_incorporates_rn(self): # The magic number uses \r\n to come out wrong when splitting on lines. self.assertTrue(self.util.MAGIC_NUMBER.endswith(b'\r\n'))