enable test that was commented out for whatever reason

This commit is contained in:
Benjamin Peterson 2010-11-20 22:50:04 +00:00
parent 155614b104
commit 94ab7a0864
1 changed files with 1 additions and 1 deletions

View File

@ -912,7 +912,7 @@ class BuiltinTest(unittest.TestCase):
self.assertEqual(list(range(0)), [])
self.assertEqual(list(range(-3)), [])
self.assertEqual(list(range(1, 10, 3)), [1, 4, 7])
#self.assertEqual(list(range(5, -5, -3)), [5, 2, -1, -4])
self.assertEqual(list(range(5, -5, -3)), [5, 2, -1, -4])
#issue 6334: the internal stored range length was being
#computed incorrectly in some cases involving large arguments.