Searched refs:assertNotInBytecode (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_peepholer.py | 77 self.assertNotInBytecode(unot, 'UNARY_NOT') 78 self.assertNotInBytecode(unot, 'POP_JUMP_IF_FALSE') 109 self.assertNotInBytecode(func, 'LOAD_GLOBAL') 117 self.assertNotInBytecode(f, 'LOAD_GLOBAL') 128 self.assertNotInBytecode(f, elem) 142 self.assertNotInBytecode(code, 'BUILD_TUPLE') 143 self.assertNotInBytecode(code, 'UNPACK_SEQUENCE') 157 self.assertNotInBytecode(code, 'BUILD_TUPLE') 162 self.assertNotInBytecode(code, 'BUILD_TUPLE') 198 self.assertNotInBytecode(code, 'BUILD_LIST') [all …]
|
D | test_dis.py | 2148 self.assertNotInBytecode(code, "LOAD_NAME") 2149 self.assertNotInBytecode(code, "LOAD_NAME", "a") 2155 self.assertNotInBytecode(code, "LOAD_CONST", 2) 2160 self.assertNotInBytecode(code, "LOAD_CONST", 1)
|
/external/python/cpython3/Lib/test/support/ |
D | bytecode_helper.py | 49 def assertNotInBytecode(self, x, opname, argval=_UNSPECIFIED): member in BytecodeTestCase
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.10.0a4.rst | 808 Fix bytecode helper assertNotInBytecode.
|
/external/python/cpython3/Doc/library/ |
D | test.rst | 1264 .. method:: BytecodeTestCase.assertNotInBytecode(x, opname, argval=_UNSPECIFIED)
|