summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2019-02-20 17:29:24 (GMT)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>2019-02-20 17:29:24 (GMT)
commitd8b9e1fc2e45d2bc3f4a9737c375f2adb8a8c7de (patch)
tree670cea6dd725af6f1676cb8440d1f5e7d305f3bf /Misc
parentb5409dacc4885146a27d06482b346e55fa12d2ec (diff)
downloadcpython-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.rst2
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.