summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-11-20 22:50:04 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-11-20 22:50:04 (GMT)
commit94ab7a086443f0b111a710f90c91fd267bbe01ee (patch)
tree2e95d9e1e55206fa6b4890703e6c663be9e17710 /Lib
parent155614b104e7bd0a0175bfab2b249082989d398e (diff)
downloadcpython-94ab7a086443f0b111a710f90c91fd267bbe01ee.zip
cpython-94ab7a086443f0b111a710f90c91fd267bbe01ee.tar.gz
cpython-94ab7a086443f0b111a710f90c91fd267bbe01ee.tar.bz2
enable test that was commented out for whatever reason
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_builtin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py
index 4d9b5c3..9b5a876 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.