summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2022-03-08 15:53:22 (GMT)
committerGitHub <noreply@github.com>2022-03-08 15:53:22 (GMT)
commit5498a61c7c25db6f9e76032aa9c5153d79e09889 (patch)
tree7a74ec449c7d56d0dfde2b3d977f49993fee09c1 /Misc
parent28f84c72b6cee145f9c00e9b999656e9a2517e49 (diff)
downloadcpython-5498a61c7c25db6f9e76032aa9c5153d79e09889.zip
cpython-5498a61c7c25db6f9e76032aa9c5153d79e09889.tar.gz
cpython-5498a61c7c25db6f9e76032aa9c5153d79e09889.tar.bz2
bpo-46841: Don't use an oparg counter for `STORE_SUBSCR` (GH-31742)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-03-07-15-54-39.bpo-46841.7wG92r.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-03-07-15-54-39.bpo-46841.7wG92r.rst b/Misc/NEWS.d/next/Core and Builtins/2022-03-07-15-54-39.bpo-46841.7wG92r.rst
new file mode 100644
index 0000000..f863c75
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-03-07-15-54-39.bpo-46841.7wG92r.rst
@@ -0,0 +1,2 @@
+Modify :opcode:`STORE_SUBSCR` to use an inline cache entry (rather than its
+oparg) as an adaptive counter.