summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-05-20 05:48:06 (GMT)
committerGitHub <noreply@github.com>2017-05-20 05:48:06 (GMT)
commitd896985bb2de49046f9b6879e906d1e4db255e23 (patch)
treeb66eda420f110f93fa33b0e6454b822b23e4a8f7 /Misc/NEWS
parent3378b2062c7fbb77a9b5e6d315d6b94160fac69a (diff)
downloadcpython-d896985bb2de49046f9b6879e906d1e4db255e23.zip
cpython-d896985bb2de49046f9b6879e906d1e4db255e23.tar.gz
cpython-d896985bb2de49046f9b6879e906d1e4db255e23.tar.bz2
bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (#1652)
Based on patch by Eryk Sun.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c6aed7f..9aa982e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.7.0 alpha 1?
Core and Builtins
-----------------
+- bpo-25794: Fixed type.__setattr__() and type.__delattr__() for
+ non-interned attribute names. Based on patch by Eryk Sun.
+
- bpo-30039: If a KeyboardInterrupt happens when the interpreter is in
the middle of resuming a chain of nested 'yield from' or 'await'
calls, it's now correctly delivered to the innermost frame.