summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2007-02-08 00:07:32 (GMT)
committerRaymond Hettinger <python@rcn.com>2007-02-08 00:07:32 (GMT)
commit6d121f168cca9df59fe4b3908cecbc346e185650 (patch)
treefe8629589e827fe1f8803b5fb90d871e017c7bff /Lib
parentde33c62466c688d0769744a7503d8e969bce5741 (diff)
downloadcpython-6d121f168cca9df59fe4b3908cecbc346e185650.zip
cpython-6d121f168cca9df59fe4b3908cecbc346e185650.tar.gz
cpython-6d121f168cca9df59fe4b3908cecbc346e185650.tar.bz2
Do not let overflows in enumerate() and count() pass silently.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_itertools.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py
index 5e375c9..c965d4c 100644
--- a/Lib/test/test_itertools.py
+++ b/Lib/test/test_itertools.py
@@ -52,8 +52,7 @@ class TestBasicOps(unittest.TestCase):
self.assertEqual(take(2, zip('abc',count(3))), [('a', 3), ('b', 4)])
self.assertRaises(TypeError, count, 2, 3)
self.assertRaises(TypeError, count, 'a')
- c = count(sys.maxint-2) # verify that rollover doesn't crash
- c.next(); c.next(); c.next(); c.next(); c.next()
+ self.assertRaises(OverflowError, list, islice(count(sys.maxint-5), 10))
c = count(3)
self.assertEqual(repr(c), 'count(3)')
c.next()