summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-06-16 03:05:30 -0400
committerTerry Jan Reedy <tjreedy@udel.edu>2014-06-16 03:05:30 -0400
commita4480881029ecee975167f2cc1ed0506617384b3 (patch)
treec9d0e1b31175d074c55ca16600638f17dc203b9e /Python
parent8b546abbd3611470459715719654331dc340e3e5 (diff)
downloadcpython-a4480881029ecee975167f2cc1ed0506617384b3.tar.gz
Issue #19362: Tweek len() doc and docstring to expand the indicated range of
arguments. Original patch by Gareth Rees.
Diffstat (limited to 'Python')
-rw-r--r--Python/bltinmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index d22dca2f48..f0525742ee 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -1323,7 +1323,7 @@ builtin_len(PyObject *self, PyObject *v)
PyDoc_STRVAR(len_doc,
"len(object) -> integer\n\
\n\
-Return the number of items of a sequence or mapping.");
+Return the number of items of a sequence or collection.");
static PyObject *