diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-30 23:20:46 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-30 23:20:46 (GMT) |
commit | c2fe618575aaf58ddf36d04d96431d6dc819ef31 (patch) | |
tree | f083f6119e71555915d02a04de993e97d7d36ffc /Lib/test | |
parent | 5ded1bf5c7773b7a13e1907e3cfb4826c402d7b2 (diff) | |
download | cpython-c2fe618575aaf58ddf36d04d96431d6dc819ef31.zip cpython-c2fe618575aaf58ddf36d04d96431d6dc819ef31.tar.gz cpython-c2fe618575aaf58ddf36d04d96431d6dc819ef31.tar.bz2 |
Fix bad bug in structseq slicing (NULL pointers in result). Reported by
Jack Jansen on python-dev.
Add simple test case.
Move vereq() from test_descr to test_support (it's handy!).
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_descr.py | 6 | ||||
-rw-r--r-- | Lib/test/test_structseq.py | 16 | ||||
-rw-r--r-- | Lib/test/test_support.py | 4 |
3 files changed, 21 insertions, 5 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 4fd11a5..ca09ca9 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -1,12 +1,8 @@ # Test enhancements related to descriptors and new-style classes -from test_support import verify, verbose, TestFailed, TESTFN +from test_support import verify, vereq, verbose, TestFailed, TESTFN from copy import deepcopy -def vereq(a, b): - if not (a == b): - raise TestFailed, "%r == %r" % (a, b) - def veris(a, b): if a is not b: raise TestFailed, "%r is %r" % (a, b) diff --git a/Lib/test/test_structseq.py b/Lib/test/test_structseq.py new file mode 100644 index 0000000..33d3313 --- /dev/null +++ b/Lib/test/test_structseq.py @@ -0,0 +1,16 @@ +from test_support import vereq + +import time + +t = time.gmtime() +astuple = tuple(t) +vereq(len(t), len(astuple)) +vereq(t, astuple) + +# Check that slicing works the same way; at one point, slicing t[i:j] with +# 0 < i < j could produce NULLs in the result. +for i in range(-len(t), len(t)): + for j in range(-len(t), len(t)): + vereq(t[i:j], astuple[i:j]) + +XXX more needed diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index bbae1be..83bde3e 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -117,6 +117,10 @@ def verify(condition, reason='test failed'): if not condition: raise TestFailed(reason) +def vereq(a, b): + if not (a == b): + raise TestFailed, "%r == %r" % (a, b) + def sortdict(dict): "Like repr(dict), but in sorted order." items = dict.items() |