diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-20 07:23:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-20 07:23:58 (GMT) |
commit | 4a86fe9d3f5e7af6f019ae22536eec228f04e22e (patch) | |
tree | b72c781d6e73c2ef4c445dd067dbb92776b857d3 /Misc/NEWS | |
parent | 9503dd1e1865bb873a1f72f63ae384bba8462c5e (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |