@@ -1706,7 +1706,7 @@ def binary_subscr_list_int():
1706
1706
binary_subscr_list_int ()
1707
1707
self .assert_specialized (binary_subscr_list_int ,
1708
1708
"BINARY_OP_SUBSCR_LIST_INT" )
1709
- self .assert_no_opcode (binary_subscr_list_int , "BINARY_SUBSCR " )
1709
+ self .assert_no_opcode (binary_subscr_list_int , "BINARY_OP " )
1710
1710
1711
1711
def binary_subscr_tuple_int ():
1712
1712
for _ in range (_testinternalcapi .SPECIALIZATION_THRESHOLD ):
@@ -1717,7 +1717,7 @@ def binary_subscr_tuple_int():
1717
1717
binary_subscr_tuple_int ()
1718
1718
self .assert_specialized (binary_subscr_tuple_int ,
1719
1719
"BINARY_OP_SUBSCR_TUPLE_INT" )
1720
- self .assert_no_opcode (binary_subscr_tuple_int , "BINARY_SUBSCR " )
1720
+ self .assert_no_opcode (binary_subscr_tuple_int , "BINARY_OP " )
1721
1721
1722
1722
def binary_subscr_dict ():
1723
1723
for _ in range (_testinternalcapi .SPECIALIZATION_THRESHOLD ):
@@ -1737,7 +1737,7 @@ def binary_subscr_str_int():
1737
1737
1738
1738
binary_subscr_str_int ()
1739
1739
self .assert_specialized (binary_subscr_str_int , "BINARY_OP_SUBSCR_STR_INT" )
1740
- self .assert_no_opcode (binary_subscr_str_int , "BINARY_SUBSCR " )
1740
+ self .assert_no_opcode (binary_subscr_str_int , "BINARY_OP " )
1741
1741
1742
1742
def binary_subscr_getitems ():
1743
1743
class C :
@@ -1752,7 +1752,7 @@ def __getitem__(self, item):
1752
1752
1753
1753
binary_subscr_getitems ()
1754
1754
self .assert_specialized (binary_subscr_getitems , "BINARY_OP_SUBSCR_GETITEM" )
1755
- self .assert_no_opcode (binary_subscr_getitems , "BINARY_SUBSCR " )
1755
+ self .assert_no_opcode (binary_subscr_getitems , "BINARY_OP " )
1756
1756
1757
1757
@cpython_only
1758
1758
@requires_specialization_ft
0 commit comments