diff options
author | Raymond Hettinger <python@rcn.com> | 2015-05-15 23:17:05 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2015-05-15 23:17:05 (GMT) |
commit | 29655df11d48d3b2bfdb9b06be79ed512d292c83 (patch) | |
tree | 27ce09ee4ee7c508670be1d9eec4495dd18b8ae3 /Doc/library | |
parent | 42b50d187fef851bf4c26d7053184112f0f6753c (diff) | |
download | cpython-29655df11d48d3b2bfdb9b06be79ed512d292c83.zip cpython-29655df11d48d3b2bfdb9b06be79ed512d292c83.tar.gz cpython-29655df11d48d3b2bfdb9b06be79ed512d292c83.tar.bz2 |
Issue #24064: Docuement that oroperty docstrings are now writeable.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/functions.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 1321c7a..7bee859 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1193,6 +1193,9 @@ are always available. They are listed here in alphabetical order. The returned property object also has the attributes ``fget``, ``fset``, and ``fdel`` corresponding to the constructor arguments. + .. versionchanged:: 3.5 + The docstrings of property objects are now writeable. + .. _func-range: .. function:: range(stop) |