summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2006-05-26 20:25:23 (GMT)
committerBob Ippolito <bob@redivi.com>2006-05-26 20:25:23 (GMT)
commitaa70a17e13bb8cb6da043d63a3a9b957ee97779e (patch)
tree891291dfb2814ed9c569f33aabad5f41b0f03eb2 /Lib
parent51324078680cf636218866ba822b89c149ce5e15 (diff)
downloadcpython-aa70a17e13bb8cb6da043d63a3a9b957ee97779e.zip
cpython-aa70a17e13bb8cb6da043d63a3a9b957ee97779e.tar.gz
cpython-aa70a17e13bb8cb6da043d63a3a9b957ee97779e.tar.bz2
enable all of the struct tests, use ssize_t, fix some whitespace
Diffstat (limited to 'Lib')
-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 26db4ca..6bc1f86 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: