summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2020-10-30 14:52:39 (GMT)
committerGitHub <noreply@github.com>2020-10-30 14:52:39 (GMT)
commit99608c733c5960f7834adca933c02f6ddf9b1df9 (patch)
tree8ffc263044a778cb1d31dcd5e855ab0312c2d42c
parent3af4b585527743e455145d294049c46b7c823ed9 (diff)
downloadcpython-99608c733c5960f7834adca933c02f6ddf9b1df9.zip
cpython-99608c733c5960f7834adca933c02f6ddf9b1df9.tar.gz
cpython-99608c733c5960f7834adca933c02f6ddf9b1df9.tar.bz2
DOC: attribute PyPy for the idea behind LOAD_ATTR cache (GH-23036)
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
-rw-r--r--Doc/whatsnew/3.10.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index 45258db..f4d7290 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -261,7 +261,7 @@ Optimizations
* The ``LOAD_ATTR`` instruction now uses new "per opcode cache" mechanism.
It is about 36% faster now. (Contributed by Pablo Galindo and Yury Selivanov
- in :issue:`42093`.)
+ in :issue:`42093`, based on ideas implemented originally in PyPy and MicroPython.)
* When building Python with ``--enable-optimizations`` now
``-fno-semantic-interposition`` is added to both the compile and link line.