Home
last modified time | relevance | path

Searched refs:assertNotInBytecode (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_peepholer.py77 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 …]
Dtest_dis.py2148 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/
Dbytecode_helper.py49 def assertNotInBytecode(self, x, opname, argval=_UNSPECIFIED): member in BytecodeTestCase
/external/python/cpython3/Misc/NEWS.d/
D3.10.0a4.rst808 Fix bytecode helper assertNotInBytecode.
/external/python/cpython3/Doc/library/
Dtest.rst1264 .. method:: BytecodeTestCase.assertNotInBytecode(x, opname, argval=_UNSPECIFIED)