Skip to content
Prev Previous commit
Next Next commit
Fix test on 32 bit machines
  • Loading branch information
markshannon committed Dec 11, 2024
commit 22f58e793c56559a5f2fc2dddd87f5ef1a2519c9
2 changes: 1 addition & 1 deletion Lib/test/test_builtin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2691,7 +2691,7 @@ def __del__(self):
class ImmortalTests(unittest.TestCase):

if sys.maxsize < (1 << 32):
IMMORTAL_REFCOUNT = 3 << 29
IMMORTAL_REFCOUNT = 7 << 28
else:
IMMORTAL_REFCOUNT = 3 << 30

Expand Down