summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2023-01-13 15:57:39 +0000
committerGitHub <noreply@github.com>2023-01-13 15:57:39 +0000
commitc00eb1eae6af3ee5b7e314add4606da4521bb8c5 (patch)
tree7023a81836253067b576e1b31fa89c668ed5e23c /Tools
parentgh-100160: Restore and deprecate implicit creation of an event loop (GH-100410) (diff)
downloadcpython-c00eb1eae6af3ee5b7e314add4606da4521bb8c5.tar.gz
cpython-c00eb1eae6af3ee5b7e314add4606da4521bb8c5.tar.bz2
cpython-c00eb1eae6af3ee5b7e314add4606da4521bb8c5.zip
Don't double count misses. (GH-100984)
Diffstat (limited to 'Tools')
-rw-r--r--Tools/scripts/summarize_stats.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Tools/scripts/summarize_stats.py b/Tools/scripts/summarize_stats.py
index 1c8d10f7027..ce25374f3a9 100644
--- a/Tools/scripts/summarize_stats.py
+++ b/Tools/scripts/summarize_stats.py
@@ -404,6 +404,9 @@ def emit_specialization_overview(opcode_stats, total):
total = 0
counts = []
for i, opcode_stat in enumerate(opcode_stats):
+ # Avoid double counting misses
+ if title == "Misses" and "specializable" in opcode_stat:
+ continue
value = opcode_stat.get(field, 0)
counts.append((value, opname[i]))
total += value