mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
enable test that was commented out for whatever reason
This commit is contained in:
parent
155614b104
commit
94ab7a0864
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue