diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-06-16 07:05:30 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-06-16 07:05:30 (GMT) |
commit | 9f2dcd227ce0784faec41fd696438e00c3dd2604 (patch) | |
tree | a40c7d7b22ab65ca6305ac4db6f311746036fd12 /Python | |
parent | 357d312fdc15e9dd9a51de1981e995e00997dd3c (diff) | |
download | cpython-9f2dcd227ce0784faec41fd696438e00c3dd2604.zip cpython-9f2dcd227ce0784faec41fd696438e00c3dd2604.tar.gz cpython-9f2dcd227ce0784faec41fd696438e00c3dd2604.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')
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index d22dca2..f052574 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 * |