#8030: make builtin type docstrings more consistent: use "iterable" instead of "seq(uence)", use "new" to show that set() always returns a new object.
diff --git a/Objects/listobject.c b/Objects/listobject.c
index c55524d..d710374 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -2537,7 +2537,7 @@
 
 PyDoc_STRVAR(list_doc,
 "list() -> new list\n"
-"list(sequence) -> new list initialized from sequence's items");
+"list(iterable) -> new list initialized from iterable's items");
 
 
 static PyObject *