Skip to content

Commit 7ab8ab1

Browse files
committed
Explain test_replace_overflow skip
1 parent 17cc14f commit 7ab8ab1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/string_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ def test_replace(self):
673673
self.checkraises(TypeError, 'hello', 'replace', 42, 'h')
674674
self.checkraises(TypeError, 'hello', 'replace', 'h', 42)
675675

676-
@unittest.skip("TODO: RUSTPYTHON")
676+
@unittest.skip("TODO: RUSTPYTHON, may only apply to 32-bit platforms")
677677
@unittest.skipIf(sys.maxsize > (1 << 32) or struct.calcsize('P') != 4,
678678
'only applies to 32-bit platforms')
679679
def test_replace_overflow(self):

0 commit comments

Comments
 (0)