mirror of
https://github.com/python/cpython.git
synced 2025-08-24 02:35:59 +00:00
GH-103963: Make dis display names of args for intrinsics opcodes (#104029)
This commit is contained in:
parent
65a49c6553
commit
872cbc6132
6 changed files with 110 additions and 17 deletions
|
@ -306,6 +306,21 @@ _nb_ops = [
|
|||
("NB_INPLACE_XOR", "^="),
|
||||
]
|
||||
|
||||
_intrinsic_1_descs = [
|
||||
"INTRINSIC_1_INVALID",
|
||||
"INTRINSIC_PRINT",
|
||||
"INTRINSIC_IMPORT_STAR",
|
||||
"INTRINSIC_STOPITERATION_ERROR",
|
||||
"INTRINSIC_ASYNC_GEN_WRAP",
|
||||
"INTRINSIC_UNARY_POSITIVE",
|
||||
"INTRINSIC_LIST_TO_TUPLE",
|
||||
]
|
||||
|
||||
_intrinsic_2_descs = [
|
||||
'INTRINSIC_2_INVALID',
|
||||
'INTRINSIC_PREP_RERAISE_STAR',
|
||||
]
|
||||
|
||||
_specializations = {
|
||||
"BINARY_OP": [
|
||||
"BINARY_OP_ADD_FLOAT",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue