summaryrefslogtreecommitdiff
path: root/Lib/test/test_struct.py
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2006-05-26 20:25:23 +0000
committerBob Ippolito <bob@redivi.com>2006-05-26 20:25:23 +0000
commitaa70a17e13bb8cb6da043d63a3a9b957ee97779e (patch)
tree891291dfb2814ed9c569f33aabad5f41b0f03eb2 /Lib/test/test_struct.py
parent51324078680cf636218866ba822b89c149ce5e15 (diff)
downloadcpython-git-aa70a17e13bb8cb6da043d63a3a9b957ee97779e.tar.gz
enable all of the struct tests, use ssize_t, fix some whitespace
Diffstat (limited to 'Lib/test/test_struct.py')
-rw-r--r--Lib/test/test_struct.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py
index 26db4ca76b..6bc1f86637 100644
--- a/Lib/test/test_struct.py
+++ b/Lib/test/test_struct.py
@@ -323,7 +323,7 @@ class IntTester:
else:
# x is out of range -- verify pack realizes that.
- if code in self.BUGGY_RANGE_CHECK:
+ if not PY_STRUCT_RANGE_CHECKING and code in self.BUGGY_RANGE_CHECK:
if verbose:
print "Skipping buggy range check for code", code
else: