From: Benjamin Peterson <benjamin@python.org>
Date: Sat, 20 Nov 2010 22:50:04 +0000 (+0000)
Subject: enable test that was commented out for whatever reason
X-Git-Tag: v3.2b1~277
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=94ab7a086443f0b111a710f90c91fd267bbe01ee;p=python

enable test that was commented out for whatever reason
---

diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py
index 4d9b5c320a..9b5a876000 100644
--- a/Lib/test/test_builtin.py
+++ b/Lib/test/test_builtin.py
@@ -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.