mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-09 22:49:57 +09:00
Merge pull request #3457 from youknowone/remove-todo
Remove TODO from RustPython-invalid test_cmd_line.test_version
This commit is contained in:
1
Lib/test/seq_tests.py
vendored
1
Lib/test/seq_tests.py
vendored
@@ -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])
|
||||
|
||||
2
Lib/test/test_cmd_line.py
vendored
2
Lib/test/test_cmd_line.py
vendored
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user