Searched refs:assertNotInBytecode (Results 1 – 5 of 5) sorted by relevance
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_peepholer.py | 78 self.assertNotInBytecode(unot, 'UNARY_NOT') 79 self.assertNotInBytecode(unot, 'POP_JUMP_FORWARD_IF_FALSE') 80 self.assertNotInBytecode(unot, 'POP_JUMP_BACKWARD_IF_FALSE') 111 self.assertNotInBytecode(func, 'LOAD_GLOBAL') 119 self.assertNotInBytecode(f, 'LOAD_GLOBAL') 130 self.assertNotInBytecode(f, elem) 144 self.assertNotInBytecode(code, 'BUILD_TUPLE') 145 self.assertNotInBytecode(code, 'UNPACK_SEQUENCE') 159 self.assertNotInBytecode(code, 'BUILD_TUPLE') 164 self.assertNotInBytecode(code, 'BUILD_TUPLE') [all …]
|
D | test_dis.py | 1730 self.assertNotInBytecode(code, "LOAD_NAME") 1731 self.assertNotInBytecode(code, "LOAD_NAME", "a") 1737 self.assertNotInBytecode(code, "LOAD_CONST", 2) 1742 self.assertNotInBytecode(code, "LOAD_CONST", 1)
|
/aosp_15_r20/external/python/cpython3/Lib/test/support/ |
D | bytecode_helper.py | 31 def assertNotInBytecode(self, x, opname, argval=_UNSPECIFIED): member in BytecodeTestCase
|
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/ |
D | 3.10.0a4.rst | 808 Fix bytecode helper assertNotInBytecode.
|
/aosp_15_r20/external/python/cpython3/Doc/library/ |
D | test.rst | 1233 .. method:: BytecodeTestCase.assertNotInBytecode(x, opname, argval=_UNSPECIFIED)
|