diff options
| author | penguin_wwy <940375606@qq.com> | 2023-05-10 22:40:59 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-10 22:40:59 (GMT) |
| commit | 373bca0cc5256dc512ffc22bdff4424f7ee8baa2 (patch) | |
| tree | 2b7c9d524ad46c2ec6ff3a682f2c2b984aa85ea8 /Tools/scripts | |
| parent | 7b8d7f56b64ab4370fea77e77ea4984dd2a73979 (diff) | |
| download | cpython-373bca0cc5256dc512ffc22bdff4424f7ee8baa2.zip cpython-373bca0cc5256dc512ffc22bdff4424f7ee8baa2.tar.gz cpython-373bca0cc5256dc512ffc22bdff4424f7ee8baa2.tar.bz2 | |
GH-102181: Improve specialization stats for SEND (GH-102182)
Diffstat (limited to 'Tools/scripts')
| -rw-r--r-- | Tools/scripts/summarize_stats.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tools/scripts/summarize_stats.py b/Tools/scripts/summarize_stats.py index ce25374..4f25ba3 100644 --- a/Tools/scripts/summarize_stats.py +++ b/Tools/scripts/summarize_stats.py @@ -228,6 +228,8 @@ def kind_to_text(kind, defines, opname): return pretty(defines[kind][0]) if opname.endswith("ATTR"): opname = "ATTR" + if opname in ("FOR_ITER", "SEND"): + opname = "ITER" if opname.endswith("SUBSCR"): opname = "SUBSCR" for name in defines[kind]: |
