#8030: more docstring fix for builtin types.

This commit is contained in:
Ezio Melotti 2010-02-28 23:59:00 +00:00
parent 613c7a549a
commit fb501123e3
3 changed files with 7 additions and 7 deletions

View file

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