summaryrefslogtreecommitdiff
path: root/Doc/library/collections.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-11-09 08:26:28 -0800
committerRaymond Hettinger <python@rcn.com>2015-11-09 08:26:28 -0800
commit2fbde51e2f6d681d25784d763b9bc0bbc511dbb7 (patch)
treed46295f80340726961f72c22a37cdc9b94a061a3 /Doc/library/collections.rst
parentb9d672491d5082c541bf267eb7bb99fdc6529324 (diff)
parent850be0fb184ee1a5a42df5ecc1b8b62c433b1c6e (diff)
downloadcpython-git-2fbde51e2f6d681d25784d763b9bc0bbc511dbb7.tar.gz
merge
Diffstat (limited to 'Doc/library/collections.rst')
-rw-r--r--Doc/library/collections.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 2e2e16f36d..30193ee345 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -929,10 +929,10 @@ Docstrings can be customized by making direct assignments to the ``__doc__``
fields:
>>> Book = namedtuple('Book', ['id', 'title', 'authors'])
- >>> Book.__doc__ = 'Hardcover book in active collection'
+ >>> Book.__doc__ += ': Hardcover book in active collection'
>>> Book.id.__doc__ = '13-digit ISBN'
>>> Book.title.__doc__ = 'Title of first printing'
- >>> Book.author.__doc__ = 'List of authors sorted by last name'
+ >>> Book.authors.__doc__ = 'List of authors sorted by last name'
Default values can be implemented by using :meth:`_replace` to
customize a prototype instance: