mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
GH-102181: Improve specialization stats for SEND (GH-102182)
This commit is contained in:
parent
7b8d7f56b6
commit
373bca0cc5
4 changed files with 49 additions and 44 deletions
|
@ -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]:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue