@@ -943,7 +943,7 @@ def test_binary_specialize(self):
943943 got = self .get_disassembly (co_unicode , adaptive = True )
944944 self .do_disassembly_compare (got , binary_op_quicken % "BINARY_OP_ADD_UNICODE 0 (+)" , True )
945945
946- binary_subsrc_quicken = """\
946+ binary_subscr_quicken = """\
947947 0 RESUME_QUICK 0
948948
949949 1 2 LOAD_NAME 0 (a)
@@ -954,12 +954,12 @@ def test_binary_specialize(self):
954954 co_list = compile ('a[0]' , "<list>" , "eval" )
955955 self .code_quicken (lambda : exec (co_list , {}, {'a' : [0 ]}))
956956 got = self .get_disassembly (co_list , adaptive = True )
957- self .do_disassembly_compare (got , binary_subsrc_quicken % "BINARY_SUBSCR_LIST_INT" , True )
957+ self .do_disassembly_compare (got , binary_subscr_quicken % "BINARY_SUBSCR_LIST_INT" , True )
958958
959959 co_dict = compile ('a[0]' , "<dict>" , "eval" )
960960 self .code_quicken (lambda : exec (co_dict , {}, {'a' : {0 : '1' }}))
961961 got = self .get_disassembly (co_dict , adaptive = True )
962- self .do_disassembly_compare (got , binary_subsrc_quicken % "BINARY_SUBSCR_DICT" , True )
962+ self .do_disassembly_compare (got , binary_subscr_quicken % "BINARY_SUBSCR_DICT" , True )
963963
964964 @cpython_only
965965 def test_load_attr_specialize (self ):
0 commit comments