summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-11-29 07:54:17 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-11-29 07:54:17 (GMT)
commit9ec07721f459d14131d6453ccb6d2a1a0b0c1959 (patch)
treeed40463ef4cdc4a7beb4142860dafddf48105692 /Misc/NEWS
parent27ec5bfdcbc646c0598834e7500790f0938c5557 (diff)
downloadcpython-9ec07721f459d14131d6453ccb6d2a1a0b0c1959.zip
cpython-9ec07721f459d14131d6453ccb6d2a1a0b0c1959.tar.gz
cpython-9ec07721f459d14131d6453ccb6d2a1a0b0c1959.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 c950383..3577735 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.6.0 release candidate 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 #28782: Fix a bug in the implementation ``yield from`` when checking
if the next instruction is YIELD_FROM. Regression introduced by WORDCODE
(issue #26647).