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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6e701310d111452fa63de967ea8c624dd391167d;p=thirdparty%2FPython%2Fcpython.git 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 2ab44135d5ff..00d2916415cc 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: