diff options
author | Armin Rigo <arigo@tunes.org> | 2006-02-11 21:32:43 (GMT) |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2006-02-11 21:32:43 (GMT) |
commit | f5b3e36493da275334e29afdbd238863697dca35 (patch) | |
tree | 9ddfdb941f79b23a7665f473df37f82f49a80981 /Objects/rangeobject.c | |
parent | cbcdfdc1129cdec27281f62e4494a05405354340 (diff) | |
download | cpython-f5b3e36493da275334e29afdbd238863697dca35.zip cpython-f5b3e36493da275334e29afdbd238863697dca35.tar.gz cpython-f5b3e36493da275334e29afdbd238863697dca35.tar.bz2 |
Renamed _length_cue() to __length_hint__(). See:
http://mail.python.org/pipermail/python-dev/2006-February/060524.html
Diffstat (limited to 'Objects/rangeobject.c')
-rw-r--r-- | Objects/rangeobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c index 3cc5504..cfd9100 100644 --- a/Objects/rangeobject.c +++ b/Objects/rangeobject.c @@ -268,10 +268,10 @@ rangeiter_len(rangeiterobject *r) return PyInt_FromLong(r->len - r->index); } -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 rangeiter_methods[] = { - {"_length_cue", (PyCFunction)rangeiter_len, METH_NOARGS, length_cue_doc}, + {"__length_hint__", (PyCFunction)rangeiter_len, METH_NOARGS, length_hint_doc}, {NULL, NULL} /* sentinel */ }; |