summaryrefslogtreecommitdiffstats
path: root/Lib/opcode.py
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2021-12-17 14:48:01 (GMT)
committerGitHub <noreply@github.com>2021-12-17 14:48:01 (GMT)
commitefd6236d36b292c2c43540132c87cf8425e8d627 (patch)
tree87541a787c4e256954b36e847dd247d8e68e2e57 /Lib/opcode.py
parent396b58345f81d4c8c5a52546d2288e666a1b9b8b (diff)
downloadcpython-efd6236d36b292c2c43540132c87cf8425e8d627.zip
cpython-efd6236d36b292c2c43540132c87cf8425e8d627.tar.gz
cpython-efd6236d36b292c2c43540132c87cf8425e8d627.tar.bz2
bpo-46072: Add top level stats struct (GH-30169)
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r--Lib/opcode.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py
index 7b69988..e654a10 100644
--- a/Lib/opcode.py
+++ b/Lib/opcode.py
@@ -288,11 +288,10 @@ _specialized_instructions = [
"STORE_FAST__STORE_FAST",
]
_specialization_stats = [
- "specialization_success",
- "specialization_failure",
+ "success",
+ "failure",
"hit",
"deferred",
"miss",
"deopt",
- "unquickened",
]