From: Benjamin Peterson Date: Wed, 1 Oct 2014 01:28:27 +0000 (-0400) Subject: this test will only work on 64-bit machines X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bc4a834bd5110c4171c03c255c61864a7c3d97fe;p=python this test will only work on 64-bit machines --- diff --git a/Lib/test/test_file2k.py b/Lib/test/test_file2k.py index 14e5931b62..cab4079c3e 100644 --- a/Lib/test/test_file2k.py +++ b/Lib/test/test_file2k.py @@ -436,6 +436,7 @@ class OtherFileTests(unittest.TestCase): finally: f.close() + @unittest.skipUnless(sys.maxsize > 2**31, "requires 64-bit system") @test_support.precisionbigmemtest(2**31, 1) def test_very_long_line(self, maxsize): # Issue #22526