From bc4a834bd5110c4171c03c255c61864a7c3d97fe Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Tue, 30 Sep 2014 21:28:27 -0400 Subject: [PATCH] this test will only work on 64-bit machines --- Lib/test/test_file2k.py | 1 + 1 file changed, 1 insertion(+) 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 -- 2.50.1