diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-04-18 05:03:59 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-04-18 05:03:59 (GMT) |
commit | 5edbb7b7a431226488eb8bedf404d96b190d76cf (patch) | |
tree | 8bfb329152fbc6d38a6bad50476e7c94e58dba34 /Python | |
parent | d065c489910e86fb8ed7219205da65e224f03d94 (diff) | |
download | cpython-5edbb7b7a431226488eb8bedf404d96b190d76cf.zip cpython-5edbb7b7a431226488eb8bedf404d96b190d76cf.tar.gz cpython-5edbb7b7a431226488eb8bedf404d96b190d76cf.tar.bz2 |
correct len signature in docstring (closes #21294)
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 745457f..8d1255e 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."); |