Skip to content

Commit 3f2bab6

Browse files
authored
Merge pull request RustPython#3457 from youknowone/remove-todo
Remove TODO from RustPython-invalid test_cmd_line.test_version
2 parents 18427ec + 448f7e4 commit 3f2bab6

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

Lib/test/seq_tests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,6 @@ def test_repeat(self):
319319
self.assertEqual(self.type2test(s)*(-4), self.type2test([]))
320320
self.assertEqual(id(s), id(s*1))
321321

322-
@unittest.skip("TODO: RUSTPYTHON, only works on 32-bit systems?")
323322
def test_bigrepeat(self):
324323
if sys.maxsize <= 2147483647:
325324
x = self.type2test([0])

Lib/test/test_cmd_line.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_usage(self):
5656
# but the rest should be ASCII-only
5757
b''.join(lines[1:]).decode('ascii')
5858

59-
# TODO: RUSTPYTHON
59+
# NOTE: RUSTPYTHON version never starts with Python
6060
@unittest.expectedFailure
6161
def test_version(self):
6262
version = ('Python %d.%d' % sys.version_info[:2]).encode("ascii")

0 commit comments

Comments
 (0)