From: Ezio Melotti Date: Sun, 28 Feb 2010 23:59:00 +0000 (+0000) Subject: #8030: more docstring fix for builtin types. X-Git-Tag: v2.7a4~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb501123e3c23c3e4f2861645d58134f307ea99b;p=thirdparty%2FPython%2Fcpython.git #8030: more docstring fix for builtin types. --- diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 517c20c2fc5f..be2517609eeb 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -2327,9 +2327,9 @@ dict_iter(PyDictObject *dict) } PyDoc_STRVAR(dictionary_doc, -"dict() -> new empty dictionary.\n" +"dict() -> new empty dictionary\n" "dict(mapping) -> new dictionary initialized from a mapping object's\n" -" (key, value) pairs.\n" +" (key, value) pairs\n" "dict(iterable) -> new dictionary initialized as if via:\n" " d = {}\n" " for k, v in iterable:\n" diff --git a/Objects/listobject.c b/Objects/listobject.c index d7103744249f..86100852493d 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"); diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index 384b83068a62..7376f1a12bf6 100644 --- a/Objects/tupleobject.c +++ b/Objects/tupleobject.c @@ -681,10 +681,10 @@ tuple_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds) } PyDoc_STRVAR(tuple_doc, -"tuple() -> an empty tuple\n" -"tuple(sequence) -> tuple initialized from sequence's items\n" -"\n" -"If the argument is a tuple, the return value is the same object."); +"tuple() -> empty tuple\n\ +tuple(iterable) -> tuple initialized from iterable's items\n\ +\n\ +If the argument is a tuple, the return value is the same object."); static PySequenceMethods tuple_as_sequence = { (lenfunc)tuplelength, /* sq_length */