diff options
Diffstat (limited to 'Objects/listobject.c')
-rw-r--r-- | Objects/listobject.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c index 3bda245..f34ca70 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -2707,6 +2707,19 @@ listiter_next(listiterobject *it) return NULL; } +static int +listiter_len(listiterobject *it) +{ + if (it->it_seq) + return PyList_GET_SIZE(it->it_seq) - it->it_index; + return 0; +} + +static PySequenceMethods listiter_as_sequence = { + (inquiry)listiter_len, /* sq_length */ + 0, /* sq_concat */ +}; + PyTypeObject PyListIter_Type = { PyObject_HEAD_INIT(&PyType_Type) 0, /* ob_size */ @@ -2721,7 +2734,7 @@ PyTypeObject PyListIter_Type = { 0, /* tp_compare */ 0, /* tp_repr */ 0, /* tp_as_number */ - 0, /* tp_as_sequence */ + &listiter_as_sequence, /* tp_as_sequence */ 0, /* tp_as_mapping */ 0, /* tp_hash */ 0, /* tp_call */ |