diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-04-18 01:03:59 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-04-18 01:03:59 -0400 |
commit | 5edbb7b7a431226488eb8bedf404d96b190d76cf (patch) | |
tree | 8bfb329152fbc6d38a6bad50476e7c94e58dba34 /Python/bltinmodule.c | |
parent | d065c489910e86fb8ed7219205da65e224f03d94 (diff) | |
download | cpython-git-5edbb7b7a431226488eb8bedf404d96b190d76cf.tar.gz |
correct len signature in docstring (closes #21294)
Diffstat (limited to 'Python/bltinmodule.c')
-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 745457fed9..8d1255ecac 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -1325,7 +1325,7 @@ builtin_len(PyObject *self, PyObject *v) } PyDoc_STRVAR(len_doc, -"len(module, object)\n\ +"len(object)\n\ \n\ Return the number of items of a sequence or mapping."); |