summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-06-16 07:05:37 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-06-16 07:05:37 (GMT)
commitf2fb73f6757d569d176811e849a2732861ec6eb9 (patch)
treebf8cac643ebfdf6225a83eee5e06dc9820be8244 /Python/bltinmodule.c
parentd0c1ea42f76e19dc3d04238c29cdd14a7ce39899 (diff)
downloadcpython-f2fb73f6757d569d176811e849a2732861ec6eb9.zip
cpython-f2fb73f6757d569d176811e849a2732861ec6eb9.tar.gz
cpython-f2fb73f6757d569d176811e849a2732861ec6eb9.tar.bz2
Issue #19362: Tweek len() doc and docstring to expand the indicated range of
arguments. Original patch by Gareth Rees.
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r--Python/bltinmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index d351cd0..a81af65 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -1327,7 +1327,7 @@ builtin_len(PyObject *self, PyObject *v)
PyDoc_STRVAR(len_doc,
"len(object)\n\
\n\
-Return the number of items of a sequence or mapping.");
+Return the number of items of a sequence or collection.");
static PyObject *