diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-28 23:59:00 +0000 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-02-28 23:59:00 +0000 |
commit | fb501123e3c23c3e4f2861645d58134f307ea99b (patch) | |
tree | d2938ca033f6017a9487362f66c301726b802eb9 /Objects/dictobject.c | |
parent | 613c7a549abefd1f7806b61589667de683d76858 (diff) | |
download | cpython-git-fb501123e3c23c3e4f2861645d58134f307ea99b.tar.gz |
#8030: more docstring fix for builtin types.
Diffstat (limited to 'Objects/dictobject.c')
-rw-r--r-- | Objects/dictobject.c | 4 |
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" |