commit | 69ed5240451b5e9642ddc87bb6b0ca2d2e47d784 | [log] [tgz] |
---|---|---|
author | Mark Hammond <mhammond@skippinet.com.au> | Sat Aug 23 00:59:14 2008 +0000 |
committer | Mark Hammond <mhammond@skippinet.com.au> | Sat Aug 23 00:59:14 2008 +0000 |
tree | 1d9342e923d4c6aa01cd1cdff83c845b6af945f3 | |
parent | 94a730540ae65b34c596d99e4dd199bfaee4332c [diff] [blame] |
Fix bug 3625: test issues on 64bit windows. r=pitrou
diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py index 5e4f0cc..ec4a2db 100644 --- a/Lib/test/test_struct.py +++ b/Lib/test/test_struct.py
@@ -8,7 +8,7 @@ import sys ISBIGENDIAN = sys.byteorder == "big" -IS32BIT = sys.maxint == 0x7fffffff +IS32BIT = sys.maxsize == 0x7fffffff del sys try: