diff options
Diffstat (limited to 'Modules/collectionsmodule.c')
-rw-r--r-- | Modules/collectionsmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/collectionsmodule.c b/Modules/collectionsmodule.c index 16f25df..2003154 100644 --- a/Modules/collectionsmodule.c +++ b/Modules/collectionsmodule.c @@ -941,10 +941,10 @@ dequeiter_len(dequeiterobject *it) return PyInt_FromLong(it->counter); } -PyDoc_STRVAR(length_cue_doc, "Private method returning an estimate of len(list(it))."); +PyDoc_STRVAR(length_hint_doc, "Private method returning an estimate of len(list(it))."); static PyMethodDef dequeiter_methods[] = { - {"_length_cue", (PyCFunction)dequeiter_len, METH_NOARGS, length_cue_doc}, + {"__length_hint__", (PyCFunction)dequeiter_len, METH_NOARGS, length_hint_doc}, {NULL, NULL} /* sentinel */ }; |