diff options
author | Raymond Hettinger <python@rcn.com> | 2015-11-24 06:19:12 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2015-11-24 06:19:12 (GMT) |
commit | c880ef8d3005aab22c90af43ef1cc34acf4f3719 (patch) | |
tree | 5074147efa88afcd2aa14326709ab74362fff067 /Doc/library/collections.rst | |
parent | 2831b383e9065f84212ae724da1ae6e67effeabc (diff) | |
parent | 6e701310d111452fa63de967ea8c624dd391167d (diff) | |
download | cpython-c880ef8d3005aab22c90af43ef1cc34acf4f3719.zip cpython-c880ef8d3005aab22c90af43ef1cc34acf4f3719.tar.gz cpython-c880ef8d3005aab22c90af43ef1cc34acf4f3719.tar.bz2 |
merge
Diffstat (limited to 'Doc/library/collections.rst')
-rw-r--r-- | Doc/library/collections.rst | 3 |
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: |