From: Raymond Hettinger Date: Tue, 24 Nov 2015 06:18:55 +0000 (-0800) Subject: Issue #25700: Clarify that namedtuple property docstrings became writeable in 3.5 X-Git-Tag: v3.6.0a1~993^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6e701310d111452fa63de967ea8c624dd391167d;p=python Issue #25700: Clarify that namedtuple property docstrings became writeable in 3.5 --- diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 2ab44135d5..00d2916415 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -934,6 +934,9 @@ fields: >>> Book.title.__doc__ = 'Title of first printing' >>> Book.authors.__doc__ = 'List of authors sorted by last name' +.. versionchanged:: 3.5 + Property docstrings became writeable. + Default values can be implemented by using :meth:`_replace` to customize a prototype instance: