summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2022-05-06 07:57:53 (GMT)
committerGitHub <noreply@github.com>2022-05-06 07:57:53 (GMT)
commitebaf0945f9f630f32755137a54abd0a49f068e9a (patch)
treeec1da2c8721f17b58d1f161b911ea9223275dec7 /Doc/library/functions.rst
parentbebb944de56883e886891b9786351ad36240d989 (diff)
downloadcpython-ebaf0945f9f630f32755137a54abd0a49f068e9a.zip
cpython-ebaf0945f9f630f32755137a54abd0a49f068e9a.tar.gz
cpython-ebaf0945f9f630f32755137a54abd0a49f068e9a.tar.bz2
GH-89519: Deprecate classmethod descriptor chaining (#92379)
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r--Doc/library/functions.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index cb86296..47b4b11 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -271,6 +271,11 @@ are always available. They are listed here in alphabetical order.
``__name__``, ``__qualname__``, ``__doc__`` and ``__annotations__``) and
have a new ``__wrapped__`` attribute.
+ .. versionchanged:: 3.11
+ Class methods can no longer wrap other :term:`descriptors <descriptor>` such as
+ :func:`property`.
+
+
.. function:: compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1)
Compile the *source* into a code or AST object. Code objects can be executed