summaryrefslogtreecommitdiff
path: root/Objects/dictobject.c
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-02-28 23:59:00 +0000
committerEzio Melotti <ezio.melotti@gmail.com>2010-02-28 23:59:00 +0000
commitfb501123e3c23c3e4f2861645d58134f307ea99b (patch)
treed2938ca033f6017a9487362f66c301726b802eb9 /Objects/dictobject.c
parent613c7a549abefd1f7806b61589667de683d76858 (diff)
downloadcpython-git-fb501123e3c23c3e4f2861645d58134f307ea99b.tar.gz
#8030: more docstring fix for builtin types.
Diffstat (limited to 'Objects/dictobject.c')
-rw-r--r--Objects/dictobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 517c20c2fc..be2517609e 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"