summaryrefslogtreecommitdiffstats
path: root/Objects/listobject.c
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-02-28 23:59:00 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-02-28 23:59:00 (GMT)
commitfb501123e3c23c3e4f2861645d58134f307ea99b (patch)
treed2938ca033f6017a9487362f66c301726b802eb9 /Objects/listobject.c
parent613c7a549abefd1f7806b61589667de683d76858 (diff)
downloadcpython-fb501123e3c23c3e4f2861645d58134f307ea99b.zip
cpython-fb501123e3c23c3e4f2861645d58134f307ea99b.tar.gz
cpython-fb501123e3c23c3e4f2861645d58134f307ea99b.tar.bz2
#8030: more docstring fix for builtin types.
Diffstat (limited to 'Objects/listobject.c')
-rw-r--r--Objects/listobject.c2
1 files changed, 1 insertions, 1 deletions
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 @@ static PySequenceMethods list_as_sequence = {
};
PyDoc_STRVAR(list_doc,
-"list() -> new list\n"
+"list() -> new empty list\n"
"list(iterable) -> new list initialized from iterable's items");