diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2019-02-20 17:29:24 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-02-20 17:29:24 (GMT) |
commit | d8b9e1fc2e45d2bc3f4a9737c375f2adb8a8c7de (patch) | |
tree | 670cea6dd725af6f1676cb8440d1f5e7d305f3bf /Misc | |
parent | b5409dacc4885146a27d06482b346e55fa12d2ec (diff) | |
download | cpython-d8b9e1fc2e45d2bc3f4a9737c375f2adb8a8c7de.zip cpython-d8b9e1fc2e45d2bc3f4a9737c375f2adb8a8c7de.tar.gz cpython-d8b9e1fc2e45d2bc3f4a9737c375f2adb8a8c7de.tar.bz2 |
bpo-36012: Avoid linear slot search for non-dunder methods (GH-11907)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-02-19-10-47-51.bpo-36012.xq7C9E.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-02-19-10-47-51.bpo-36012.xq7C9E.rst b/Misc/NEWS.d/next/Core and Builtins/2019-02-19-10-47-51.bpo-36012.xq7C9E.rst new file mode 100644 index 0000000..ff3fdbf --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-02-19-10-47-51.bpo-36012.xq7C9E.rst @@ -0,0 +1,2 @@ +Doubled the speed of class variable writes. When a non-dunder attribute was +updated, there was an unnecessary call to update slots. |