summaryrefslogtreecommitdiffstats
path: root/Doc/library/collections.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-11-24 06:19:12 (GMT)
committerRaymond Hettinger <python@rcn.com>2015-11-24 06:19:12 (GMT)
commitc880ef8d3005aab22c90af43ef1cc34acf4f3719 (patch)
tree5074147efa88afcd2aa14326709ab74362fff067 /Doc/library/collections.rst
parent2831b383e9065f84212ae724da1ae6e67effeabc (diff)
parent6e701310d111452fa63de967ea8c624dd391167d (diff)
downloadcpython-c880ef8d3005aab22c90af43ef1cc34acf4f3719.zip
cpython-c880ef8d3005aab22c90af43ef1cc34acf4f3719.tar.gz
cpython-c880ef8d3005aab22c90af43ef1cc34acf4f3719.tar.bz2
merge
Diffstat (limited to 'Doc/library/collections.rst')
-rw-r--r--Doc/library/collections.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index af005e7..d3b025d 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: