diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-29 07:54:17 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-29 07:54:17 (GMT) |
commit | 9ec07721f459d14131d6453ccb6d2a1a0b0c1959 (patch) | |
tree | ed40463ef4cdc4a7beb4142860dafddf48105692 /Misc/NEWS | |
parent | 27ec5bfdcbc646c0598834e7500790f0938c5557 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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). |