mirror of https://github.com/python/cpython
[3.13] gh-101860: document `property.__name__` (GH-123399) (#123428)
(cherry picked from commit 40fff90ae3
)
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
This commit is contained in:
parent
ada13a82a8
commit
eec25e5d47
|
@ -1693,6 +1693,13 @@ are always available. They are listed here in alphabetical order.
|
||||||
.. versionchanged:: 3.5
|
.. versionchanged:: 3.5
|
||||||
The docstrings of property objects are now writeable.
|
The docstrings of property objects are now writeable.
|
||||||
|
|
||||||
|
.. attribute:: __name__
|
||||||
|
|
||||||
|
Attribute holding the name of the property. The name of the property
|
||||||
|
can be changed at runtime.
|
||||||
|
|
||||||
|
.. versionadded:: 3.13
|
||||||
|
|
||||||
|
|
||||||
.. _func-range:
|
.. _func-range:
|
||||||
.. class:: range(stop)
|
.. class:: range(stop)
|
||||||
|
|
|
@ -607,6 +607,9 @@ Other Language Changes
|
||||||
the :mod:`bz2`, :mod:`lzma`, :mod:`tarfile`, and :mod:`zipfile` modules.
|
the :mod:`bz2`, :mod:`lzma`, :mod:`tarfile`, and :mod:`zipfile` modules.
|
||||||
(Contributed by Serhiy Storchaka in :gh:`115961`.)
|
(Contributed by Serhiy Storchaka in :gh:`115961`.)
|
||||||
|
|
||||||
|
* Add a :attr:`~property.__name__` attribute on :class:`property` objects.
|
||||||
|
(Contributed by Eugene Toder in :gh:`101860`.)
|
||||||
|
|
||||||
|
|
||||||
New Modules
|
New Modules
|
||||||
===========
|
===========
|
||||||
|
|
Loading…
Reference in New Issue