From 0ad3a29caca5333aa3d1a6249749bd21f2bc2f4a Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Sat, 27 Nov 2021 01:34:39 +0900 Subject: [PATCH 1/2] Remove TODO from RustPython-invalid test_cmd_line.test_version --- Lib/test/test_cmd_line.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_cmd_line.py b/Lib/test/test_cmd_line.py index ef3f172fa..6f5cfc54f 100644 --- a/Lib/test/test_cmd_line.py +++ b/Lib/test/test_cmd_line.py @@ -56,7 +56,7 @@ class CmdLineTest(unittest.TestCase): # but the rest should be ASCII-only b''.join(lines[1:]).decode('ascii') - # TODO: RUSTPYTHON + # NOTE: RUSTPYTHON version never starts with Python @unittest.expectedFailure def test_version(self): version = ('Python %d.%d' % sys.version_info[:2]).encode("ascii") From 448f7e46cc0fb0e0b7328cc607f302800f262b01 Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Sat, 27 Nov 2021 01:46:44 +0900 Subject: [PATCH 2/2] test_bigrepeat is fixed probably by #3445 --- Lib/test/seq_tests.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/test/seq_tests.py b/Lib/test/seq_tests.py index 0c1d9d886..dd0bc5435 100644 --- a/Lib/test/seq_tests.py +++ b/Lib/test/seq_tests.py @@ -319,7 +319,6 @@ class CommonTest(unittest.TestCase): self.assertEqual(self.type2test(s)*(-4), self.type2test([])) self.assertEqual(id(s), id(s*1)) - @unittest.skip("TODO: RUSTPYTHON, only works on 32-bit systems?") def test_bigrepeat(self): if sys.maxsize <= 2147483647: x = self.type2test([0])