Searched refs:assertNotInBytecode (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Lib/test/ |
D | test_peepholer.py | 62 self.assertNotInBytecode(unot, 'UNARY_NOT') 63 self.assertNotInBytecode(unot, 'POP_JUMP_IF_FALSE') 92 self.assertNotInBytecode(func, 'LOAD_GLOBAL') 100 self.assertNotInBytecode(f, 'LOAD_GLOBAL') 111 self.assertNotInBytecode(f, elem) 124 self.assertNotInBytecode(code, 'BUILD_TUPLE') 125 self.assertNotInBytecode(code, 'UNPACK_TUPLE') 138 self.assertNotInBytecode(code, 'BUILD_TUPLE') 143 self.assertNotInBytecode(code, 'BUILD_TUPLE') 178 self.assertNotInBytecode(code, 'BUILD_LIST') [all …]
|
D | test_dis.py | 1254 self.assertNotInBytecode(code, "LOAD_NAME") 1255 self.assertNotInBytecode(code, "LOAD_NAME", "a") 1261 self.assertNotInBytecode(code, "LOAD_CONST", 2) 1266 self.assertNotInBytecode(code, "LOAD_CONST", 1)
|
/third_party/python/Lib/test/support/ |
D | bytecode_helper.py | 31 def assertNotInBytecode(self, x, opname, argval=_UNSPECIFIED): member in BytecodeTestCase
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a4.rst | 808 Fix bytecode helper assertNotInBytecode.
|
/third_party/python/Doc/library/ |
D | test.rst | 1207 .. method:: BytecodeTestCase.assertNotInBytecode(x, opname, argval=_UNSPECIFIED)
|