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