summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-11-29 07:56:07 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-11-29 07:56:07 (GMT)
commitbaa7223bcd64bc092c51548caaef1fb52782ae52 (patch)
tree30929588a468110b5959468d94babd257b2e79d4 /Misc/NEWS
parent3d85fae91f82f27d239b51098fa90eee9d812ae4 (diff)
parent9ec07721f459d14131d6453ccb6d2a1a0b0c1959 (diff)
downloadcpython-baa7223bcd64bc092c51548caaef1fb52782ae52.zip
cpython-baa7223bcd64bc092c51548caaef1fb52782ae52.tar.gz
cpython-baa7223bcd64bc092c51548caaef1fb52782ae52.tar.bz2
Issue #28797: Modifying the class __dict__ inside the __set_name__ method of
a descriptor that is used inside that class no longer prevents calling the __set_name__ method of other descriptors.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 37072fe..c787c23 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.7.0 alpha 1
Core and Builtins
-----------------
+- Issue #28797: Modifying the class __dict__ inside the __set_name__ method of
+ a descriptor that is used inside that class no longer prevents calling the
+ __set_name__ method of other descriptors.
+
- Issue #28799: Remove the ``PyEval_GetCallStats()`` function and deprecate
the untested and undocumented ``sys.callstats()`` function. Remove the
``CALL_PROFILE`` special build: use the :func:`sys.setprofile` function,