diff options
author | Bob Ippolito <bob@redivi.com> | 2006-05-26 20:25:23 (GMT) |
---|---|---|
committer | Bob Ippolito <bob@redivi.com> | 2006-05-26 20:25:23 (GMT) |
commit | aa70a17e13bb8cb6da043d63a3a9b957ee97779e (patch) | |
tree | 891291dfb2814ed9c569f33aabad5f41b0f03eb2 /Lib | |
parent | 51324078680cf636218866ba822b89c149ce5e15 (diff) | |
download | cpython-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.py | 2 |
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: |