summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-05-20 07:23:58 (GMT)
committerGitHub <noreply@github.com>2017-05-20 07:23:58 (GMT)
commit4a86fe9d3f5e7af6f019ae22536eec228f04e22e (patch)
treeb72c781d6e73c2ef4c445dd067dbb92776b857d3 /Misc/NEWS
parent9503dd1e1865bb873a1f72f63ae384bba8462c5e (diff)
downloadcpython-4a86fe9d3f5e7af6f019ae22536eec228f04e22e.zip
cpython-4a86fe9d3f5e7af6f019ae22536eec228f04e22e.tar.gz
cpython-4a86fe9d3f5e7af6f019ae22536eec228f04e22e.tar.bz2
[3.5] bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (GH-1652) (#1674)
Based on patch by Eryk Sun. (cherry picked from commit d896985bb2de49046f9b6879e906d1e4db255e23)
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 a7a8d79..dc7cbcb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: XXXX-XX-XX
Core and Builtins
-----------------
+- bpo-25794: Fixed type.__setattr__() and type.__delattr__() for
+ non-interned attribute names. Based on patch by Eryk Sun.
+
- bpo-29935: Fixed error messages in the index() method of tuple, list and deque
when pass indices of wrong type.