From 6e701310d111452fa63de967ea8c624dd391167d Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Mon, 23 Nov 2015 22:18:55 -0800 Subject: [PATCH] Issue #25700: Clarify that namedtuple property docstrings became writeable in 3.5 --- Doc/library/collections.rst | 3 +++ 1 file changed, 3 insertions(+) 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: -- 2.40.0