commit | fb501123e3c23c3e4f2861645d58134f307ea99b | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Sun Feb 28 23:59:00 2010 +0000 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Sun Feb 28 23:59:00 2010 +0000 |
tree | d2938ca033f6017a9487362f66c301726b802eb9 | |
parent | 613c7a549abefd1f7806b61589667de683d76858 [diff] [blame] |
#8030: more docstring fix for builtin types.
diff --git a/Objects/listobject.c b/Objects/listobject.c index d710374..8610085 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c
@@ -2536,7 +2536,7 @@ }; PyDoc_STRVAR(list_doc, -"list() -> new list\n" +"list() -> new empty list\n" "list(iterable) -> new list initialized from iterable's items");