diff options
Diffstat (limited to 'Lib/test/test_struct.py')
-rw-r--r-- | Lib/test/test_struct.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ from test.test_support import TestFailed, verbose, run_unittest, catch_warning import sys ISBIGENDIAN = sys.byteorder == "big" -IS32BIT = sys.maxint == 0x7fffffff +IS32BIT = sys.maxsize == 0x7fffffff del sys try: |