summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-02-10 09:25:40 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-02-10 09:25:40 (GMT)
commit5cab2e3a88903b0cea558ee01b8f5b9e5a31a797 (patch)
tree520d1fdfefd2c4104669ad18fc30e0e86dbadc2c
parent27da291b2c2b32b0f976bb7599f6e9b2d07e6e4c (diff)
downloadcpython-5cab2e3a88903b0cea558ee01b8f5b9e5a31a797.zip
cpython-5cab2e3a88903b0cea558ee01b8f5b9e5a31a797.tar.gz
cpython-5cab2e3a88903b0cea558ee01b8f5b9e5a31a797.tar.bz2
Give itertools.repeat() a length method.
-rw-r--r--Lib/test/test_itertools.py8
-rw-r--r--Modules/itertoolsmodule.c15
2 files changed, 21 insertions, 2 deletions
diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py
index fe49f75..73e8809 100644
--- a/Lib/test/test_itertools.py
+++ b/Lib/test/test_itertools.py
@@ -607,6 +607,12 @@ class TestVariousIteratorArgs(unittest.TestCase):
self.assertRaises(TypeError, list, tee(N(s))[0])
self.assertRaises(ZeroDivisionError, list, tee(E(s))[0])
+class LengthTransparency(unittest.TestCase):
+
+ def test_repeat(self):
+ self.assertEqual(len(repeat(None, 50)), 50)
+ self.assertRaises(TypeError, len, repeat(None))
+
class RegressionTests(unittest.TestCase):
def test_sf_793826(self):
@@ -826,7 +832,7 @@ __test__ = {'libreftest' : libreftest}
def test_main(verbose=None):
test_classes = (TestBasicOps, TestVariousIteratorArgs, TestGC,
- RegressionTests)
+ RegressionTests, LengthTransparency)
test_support.run_unittest(*test_classes)
# verify reference counting
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c
index 387133c..ebd5f6d 100644
--- a/Modules/itertoolsmodule.c
+++ b/Modules/itertoolsmodule.c
@@ -2347,6 +2347,19 @@ repeat_next(repeatobject *ro)
return ro->element;
}
+static int
+repeat_len(repeatobject *ro)
+{
+ if (ro->cnt == -1)
+ PyErr_SetString(PyExc_TypeError, "len() of unsized object");
+ return (int)(ro->cnt);
+}
+
+static PySequenceMethods repeat_as_sequence = {
+ (inquiry)repeat_len, /* sq_length */
+ 0, /* sq_concat */
+};
+
PyDoc_STRVAR(repeat_doc,
"repeat(element [,times]) -> create an iterator which returns the element\n\
for the specified number of times. If not specified, returns the element\n\
@@ -2366,7 +2379,7 @@ static PyTypeObject repeat_type = {
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
- 0, /* tp_as_sequence */
+ &repeat_as_sequence, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */