diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-20 05:48:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-20 05:48:06 (GMT) |
commit | d896985bb2de49046f9b6879e906d1e4db255e23 (patch) | |
tree | b66eda420f110f93fa33b0e6454b822b23e4a8f7 /Misc/NEWS | |
parent | 3378b2062c7fbb77a9b5e6d315d6b94160fac69a (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |