Index: test_b1.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/test/test_b1.py,v retrieving revision 1.45 diff -c -r1.45 test_b1.py *** test_b1.py 14 Apr 2002 22:04:03 -0000 1.45 --- test_b1.py 17 May 2002 23:59:49 -0000 *************** *** 513,518 **** --- 513,524 ---- if list((0, 1, 2, 3)) != [0, 1, 2, 3]: raise TestFailed, 'list((0, 1, 2, 3))' if list('') != []: raise TestFailed, 'list('')' if list('spam') != ['s', 'p', 'a', 'm']: raise TestFailed, "list('spam')" + try: + list(xrange(1e9)) # Verify clearing of bug #556025 + except ValueError: + pass + else: + raise TestFailed, 'list(xrange(1e9))' print 'long' if long(314) != 314L: raise TestFailed, 'long(314)'