Merge pull request #3457 from youknowone/remove-todo

Remove TODO from RustPython-invalid test_cmd_line.test_version
This commit is contained in:
Jeong YunWon
2021-11-27 12:17:45 +09:00
committed by GitHub
2 changed files with 1 additions and 2 deletions

View File

@@ -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])

View File

@@ -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")