[Python-checkins] cpython (3.4): correct len signature in docstring (closes #21294)

benjamin.peterson python-checkins at python.org
Fri Apr 18 07:04:16 CEST 2014


http://hg.python.org/cpython/rev/679319e3f42b
changeset:   90391:679319e3f42b
branch:      3.4
parent:      90389:8c12d3e0f1de
user:        Benjamin Peterson <benjamin at python.org>
date:        Fri Apr 18 01:03:59 2014 -0400
summary:
  correct len signature in docstring (closes #21294)

files:
  Python/bltinmodule.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -1325,7 +1325,7 @@
 }
 
 PyDoc_STRVAR(len_doc,
-"len(module, object)\n\
+"len(object)\n\
 \n\
 Return the number of items of a sequence or mapping.");
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list