From: Guido van Rossum Date: Thu, 5 Jul 2001 14:49:21 +0000 (+0000) Subject: Rip out tests for xrange() features no longer supported. X-Git-Tag: v2.2a3~1338 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c09cf33658a47876366c3377e4e0c74c23d4a430;p=thirdparty%2FPython%2Fcpython.git Rip out tests for xrange() features no longer supported. --- diff --git a/Lib/test/test_b2.py b/Lib/test/test_b2.py index 324d02fdd1a2..cfc461c054dc 100644 --- a/Lib/test/test_b2.py +++ b/Lib/test/test_b2.py @@ -254,20 +254,6 @@ if tuple(xrange(10)) != tuple(range(10)): raise TestFailed, 'xrange(10)' if tuple(xrange(5,10)) != tuple(range(5,10)): raise TestFailed, 'xrange(5,10)' if tuple(xrange(0,10,2)) != tuple(range(0,10,2)): raise TestFailed, 'xrange(0,10,2)' -# regression tests for SourceForge bug #121695 -def _range_test(r): - verify(r.start != r.stop, 'Test not valid for passed-in xrange object.') - if r.stop in r: - raise TestFailed, 'r.stop in ' + `r` - if r.stop-r.step not in r: - raise TestFailed, 'r.stop-r.step not in ' + `r` - if r.start not in r: - raise TestFailed, 'r.start not in ' + `r` - if r.stop+r.step in r: - raise TestFailed, 'r.stop+r.step in ' + `r` -_range_test(xrange(10)) -_range_test(xrange(9, -1, -1)) -_range_test(xrange(0, 10, 2)) print 'zip' a = (1, 2, 3)