We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 18427ec + 448f7e4 commit 3f2bab6Copy full SHA for 3f2bab6
2 files changed
Lib/test/seq_tests.py
@@ -319,7 +319,6 @@ def test_repeat(self):
319
self.assertEqual(self.type2test(s)*(-4), self.type2test([]))
320
self.assertEqual(id(s), id(s*1))
321
322
- @unittest.skip("TODO: RUSTPYTHON, only works on 32-bit systems?")
323
def test_bigrepeat(self):
324
if sys.maxsize <= 2147483647:
325
x = self.type2test([0])
Lib/test/test_cmd_line.py
@@ -56,7 +56,7 @@ def test_usage(self):
56
# but the rest should be ASCII-only
57
b''.join(lines[1:]).decode('ascii')
58
59
- # TODO: RUSTPYTHON
+ # NOTE: RUSTPYTHON version never starts with Python
60
@unittest.expectedFailure
61
def test_version(self):
62
version = ('Python %d.%d' % sys.version_info[:2]).encode("ascii")
0 commit comments