correct len signature in docstring (closes #21294)

This commit is contained in:
Benjamin Peterson 2014-04-18 01:03:59 -04:00
parent d065c48991
commit 5edbb7b7a4
1 changed files with 1 additions and 1 deletions

View File

@ -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.");