From 5edbb7b7a431226488eb8bedf404d96b190d76cf Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 18 Apr 2014 01:03:59 -0400 Subject: [PATCH] correct len signature in docstring (closes #21294) --- Python/bltinmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 745457fed98..8d1255ecac5 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.");